Skip to content

Commit

Permalink
feat(nvim): install lspconfig with typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Feb 24, 2024
1 parent 3775ab3 commit 28da9c2
Showing 1 changed file with 56 additions and 1 deletion.
57 changes: 56 additions & 1 deletion dotfiles/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,59 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)

require("lazy").setup()
require("lazy").setup({
"neovim/nvim-lspconfig"
})

local lspconfig = require('lspconfig')
require('lspconfig').typos_lsp.setup({
config = {
-- log level of the language server. Defaults to ERROR.
cmd_env = { RUST_LOG = "ERROR" }
},
init_options = {
-- custom config. Used together with any workspace config files.
config = '~/code/typos-vscode/crates/typos-lsp/tests/typos.toml',
-- how typos are rendered in the editor. Defaults to ERROR.
diagnosticSeverity = "Error"
}
})
vim.lsp.set_log_level("debug")

-- Global mappings.
-- See `:help vim.diagnostic.*` for documentation on any of the below functions
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float)
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
vim.keymap.set('n', '<space>q', vim.diagnostic.setloclist)

-- Use LspAttach autocommand to only map the following keys
-- after the language server attaches to the current buffer
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(ev)
-- Enable completion triggered by <c-x><c-o>
vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc'

-- Buffer local mappings.
-- See `:help vim.lsp.*` for documentation on any of the below functions
local opts = { buffer = ev.buf }
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts)
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)
vim.keymap.set('n', '<space>wa', vim.lsp.buf.add_workspace_folder, opts)
vim.keymap.set('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, opts)
vim.keymap.set('n', '<space>wl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end, opts)
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, opts)
vim.keymap.set({ 'n', 'v' }, '<space>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
vim.keymap.set('n', '<space>f', function()
vim.lsp.buf.format { async = true }
end, opts)
end,
})

0 comments on commit 28da9c2

Please sign in to comment.