fix: Package management using paq-nvim

This commit is contained in:
Sayantan Santra 2024-03-21 00:39:15 -05:00
parent 5aa7382d57
commit 216598af2f
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F
7 changed files with 4 additions and 22 deletions

View file

@ -4,7 +4,7 @@ package.path = package.path .. ';' .. vim.fn.stdpath("config") .. "/?.lua"
-- Load global configs
require("globals")
-- Load plugins using paq-nvim
require("paq")
require("plugins")
-- Load keymaps
require("keymaps")

View file

@ -44,7 +44,6 @@ bootstrap_paq {
"hrsh7th/cmp-omni", -- For LaTeX completion
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
"SirVer/ultisnips", -- For snippets
-- Support programming terms
{ "psliwka/vim-dirtytalk", build = ':let &rtp = &rtp | DirtytalkUpdate' },
-- vim-moonfly theme
@ -62,3 +61,4 @@ bootstrap_paq {
"junegunn/fzf.vim",
"kylechui/nvim-surround",
}

View file

@ -4,7 +4,7 @@ package.path = package.path .. ';' .. vim.fn.stdpath("config") .. "/?.lua"
-- Load global configs
require("globals")
-- Load plugins using paq-nvim
require("paq")
require("plugins")
-- Load keymaps
require("keymaps")

View file

@ -27,11 +27,3 @@ vim.g.loaded_perl_provider = 0
vim.g.loaded_node_provider = 0
vim.g.loaded_ruby_provider = 0
-- Load keymaps
local keymaps = vim.fn.stdpath("config") .. "/keymaps.lua"
vim.cmd.source(keymaps)
-- Load plugins using paq-nvim
local paq = vim.fn.stdpath("config") .. "/paq.lua"
vim.cmd.source(paq)

View file

@ -4,7 +4,7 @@ package.path = package.path .. ';' .. vim.fn.stdpath("config") .. "/?.lua"
-- Load global configs
require("globals")
-- Load plugins using paq-nvim
require("paq")
require("plugins")
-- Load keymaps
require("keymaps")

View file

@ -33,16 +33,6 @@ bootstrap_paq {
"lambdalisue/suda.vim",
-- Auto toggle for number mode when vim isn't focused
"sitiom/nvim-numbertoggle",
-- LSP related plugins
"neovim/nvim-lspconfig",
"nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp", -- For LSP completion
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-vsnip", -- For snippets
"hrsh7th/vim-vsnip", -- For snippets
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
-- Support programming terms
{ "psliwka/vim-dirtytalk", build = ':let &rtp = &rtp | DirtytalkUpdate' },
-- vim-moonfly theme