Compare commits

...

2 commits

Author SHA1 Message Date
eb881cd298
chg: Add back UltiSnips 2024-03-21 01:17:18 -05:00
216598af2f
fix: Package management using paq-nvim 2024-03-21 00:39:15 -05:00
7 changed files with 7 additions and 24 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

@ -38,13 +38,13 @@ bootstrap_paq {
-- LSP related plugins
"neovim/nvim-lspconfig",
"nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp", -- For LSP completion
"hrsh7th/nvim-cmp", -- For LSP completion
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-omni", -- For LaTeX completion
"hrsh7th/cmp-omni", -- For LaTeX completion
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
"SirVer/ultisnips", -- For snippets
"SirVer/UltiSnips", -- For snippets
-- Support programming terms
{ "psliwka/vim-dirtytalk", build = ':let &rtp = &rtp | DirtytalkUpdate' },
-- vim-moonfly theme
@ -62,3 +62,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