mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat(plugins): add multiple new Lua plugins for various functionalities
feat(plugins): add various new Lua plugins for Neovim configuration. feat(plugins): add venv-selector, vim-maximizer, and vim-tmux-navigator plugins to enhance functionality
This commit is contained in:
17
lua/absolute/plugins/lsp-config.lua
Normal file
17
lua/absolute/plugins/lsp-config.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
dependencies = {
|
||||
{
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
name = "nvim_lsp",
|
||||
},
|
||||
{
|
||||
"antosha417/nvim-lsp-file-operations",
|
||||
config = true,
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
require("absolute.after.lsp-config")
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user