repos / dotfiles

my dotfiles

commit
b25a051
parent
b341338
author
Eric Bower
date
2025-08-14 13:50:29 -0400 EDT
fix(nvim): stylua
1 files changed,  +1, -1
M dot_config/nvim/init.lua
+1, -1
1@@ -77,7 +77,7 @@ local function setup_lsp()
2 			local client = assert(vim.lsp.get_client_by_id(args.data.client_id))
3 			local bufopts = { noremap = true, silent = true, buffer = args.buf }
4 			map("i", "<C-k>", vim.lsp.completion.get, bufopts) -- open completion menu manually
5-      map("n", "grd", vim.lsp.buf.definition, bufopts)
6+			map("n", "grd", vim.lsp.buf.definition, bufopts)
7 
8 			if client:supports_method("textDocument/completion") then
9 				vim.lsp.completion.enable(true, client.id, args.buf, { autotrigger = true })