From 7f72818a2a8b79dd0f88157bfff430a2c08b0242 Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Thu, 19 Feb 2026 11:27:04 +0000 Subject: streamlined lsp formatter linter and debugger setup --- lua/config/lsp.lua | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 lua/config/lsp.lua (limited to 'lua/config/lsp.lua') diff --git a/lua/config/lsp.lua b/lua/config/lsp.lua deleted file mode 100644 index 2d2db8a..0000000 --- a/lua/config/lsp.lua +++ /dev/null @@ -1,30 +0,0 @@ -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", - "https://github.com/mason-org/mason-lspconfig.nvim", - "https://github.com/mason-org/mason.nvim", -}) - -require("mason").setup() -require("mason-lspconfig").setup() - -require("blink.cmp").setup({ - signature = { enabled = true }, -}) - -vim.keymap.set("n", "grd", function() - vim.lsp.buf.definition() -end) - -vim.keymap.set("n", "grl", function() - vim.diagnostic.open_float() -end) - -vim.keymap.set("n", "[d", function() - vim.diagnostic.jump({ count = -1, float = true }) -end) - -vim.keymap.set("n", "]d", function() - vim.diagnostic.jump({ count = 1, float = true }) -end) -- cgit v1.2.3