diff options
| author | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
| commit | 019a93697352f442edfbf7b12abcaa0ff4293cfd (patch) | |
| tree | 357523f499c13438cc61300f1812b4215a526cb1 /lua/config/lsp.lua | |
new and improved nvim config
Diffstat (limited to 'lua/config/lsp.lua')
| -rw-r--r-- | lua/config/lsp.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/config/lsp.lua b/lua/config/lsp.lua new file mode 100644 index 0000000..6e8f870 --- /dev/null +++ b/lua/config/lsp.lua @@ -0,0 +1,14 @@ +local vim = vim + +vim.pack.add({ + { src = "https://github.com/saghen/blink.cmp", version = vim.version.range("*") }, + "https://github.com/neovim/nvim-lspconfig", + "https://github.com/rafamadriz/friendly-snippets", +}) + +vim.lsp.enable({ + "bashls", -- npm install -g bash-language-server + "lua_ls", -- os pkg manager lua-language-server +}) + +require("blink.cmp").setup({}) |
