Compare commits
2 commits
5aa7382d57
...
eb881cd298
Author | SHA1 | Date | |
---|---|---|---|
eb881cd298 | |||
216598af2f |
7 changed files with 7 additions and 24 deletions
|
@ -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")
|
||||
|
||||
|
|
|
@ -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",
|
||||
}
|
||||
|
|
@ -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")
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue