From: Huck Boles Date: Wed, 17 May 2023 13:27:36 +0000 (-0500) Subject: edit: tweaks X-Git-Url: https://git.huck.website/?a=commitdiff_plain;h=398e3e5ce82cbd987c85820a687a82d44bb4ecb6;p=nvim.git edit: tweaks --- diff --git a/lua/huck/map.lua b/lua/huck/map.lua index 339edd7..f4c494c 100644 --- a/lua/huck/map.lua +++ b/lua/huck/map.lua @@ -1,5 +1,5 @@ -- movement enhancers -vim.keymap.set('n', '', 'bprev') +vim.keymap.set('n', '', 'bnext') vim.keymap.set('n', 'j', 'gj') vim.keymap.set('n', 'k', 'gk') vim.keymap.set('n', 'w', 'za') diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 83a8047..e2149d6 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -18,7 +18,6 @@ return { end, proselint = mason_null, shellcheck = mason_null, - write_good = mason_null, shellharden = mason_null, }, }) @@ -30,11 +29,9 @@ return { local diagnostics = null_ls.builtins.diagnostics local formatting = null_ls.builtins.formatting local hover = null_ls.builtins.hover - local completion = null_ls.builtins.completion require("null-ls").setup({ sources = { - completion.spell, diagnostics.todo_comments, diagnostics.trail_space, formatting.trim_whitespace,