From 019a93697352f442edfbf7b12abcaa0ff4293cfd Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Wed, 29 Oct 2025 11:52:37 +0000 Subject: new and improved nvim config --- lua/config/lsp.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/config/lsp.lua (limited to 'lua/config/lsp.lua') 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({}) -- cgit v1.2.3