initial commit

This commit is contained in:
hgranthorner
2026-09-14 16:09:15 -04:00
commit 0485e97fd2
13 changed files with 270 additions and 0 deletions

6
lua/settings/lsp.lua Normal file
View File

@@ -0,0 +1,6 @@
vim.keymap.set("n", "K", function()
vim.lsp.buf.hover({ border = "rounded" })
end)
vim.keymap.set("n", "grd", vim.lsp.buf.definition)
vim.lsp.enable({'gopls', 'tsserver', 'lua_ls', 'ruby_lsp'})