Compare commits

...

3 Commits

3 changed files with 53 additions and 49 deletions

View File

@ -22,6 +22,7 @@ return {
'norg', 'norg',
'gitcommit', 'gitcommit',
'jj', 'jj',
'jjdescription',
'rst', 'rst',
'typst' 'typst'
}, },

View File

@ -8,7 +8,7 @@ luasnip.config.setup {
updateevents = "TextChanged,TextChangedI", updateevents = "TextChanged,TextChangedI",
enable_autosnippets = true, enable_autosnippets = true,
} }
luasnip.filetype_extend("jj", { "gitcommit" }) luasnip.filetype_extend("jjdescription", { "gitcommit" })
local has_words_before = function() local has_words_before = function()
unpack = unpack or table.unpack unpack = unpack or table.unpack

View File

@ -1,5 +1,9 @@
local lspattach = vim.api.nvim_create_augroup("LspMapping", { clear = true })
-- This function gets run when an LSP connects to a particular buffer. -- This function gets run when an LSP connects to a particular buffer.
local on_attach = function(_, bufnr) vim.api.nvim_create_autocmd("LspAttach", {
group = lspattach,
callback = function(args)
-- NOTE: Remember that lua is a real programming language, and as such it is possible -- NOTE: Remember that lua is a real programming language, and as such it is possible
-- to define small helper and utility functions so you don't have to repeat yourself -- to define small helper and utility functions so you don't have to repeat yourself
-- many times. -- many times.
@ -11,7 +15,7 @@ local on_attach = function(_, bufnr)
desc = 'LSP: ' .. desc desc = 'LSP: ' .. desc
end end
vim.keymap.set('n', keys, func, { buffer = bufnr, desc = desc }) vim.keymap.set('n', keys, func, { buffer = args.buf, silent = true, desc = desc })
end end
nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame') nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame')
@ -46,10 +50,11 @@ local on_attach = function(_, bufnr)
end, '[W]orkspace [L]ist Folders') end, '[W]orkspace [L]ist Folders')
-- Create a command `:Format` local to the LSP buffer -- Create a command `:Format` local to the LSP buffer
vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_) vim.api.nvim_buf_create_user_command(args.buf, 'Format', function(_)
vim.lsp.buf.format() vim.lsp.buf.format()
end, { desc = 'Format current buffer with LSP' }) end, { desc = 'Format current buffer with LSP' })
end end,
})
-- document existing key chains -- document existing key chains
require('which-key').add { require('which-key').add {
@ -125,7 +130,6 @@ mason_lspconfig.setup_handlers {
function(server_name) function(server_name)
require('lspconfig')[server_name].setup { require('lspconfig')[server_name].setup {
capabilities = capabilities, capabilities = capabilities,
on_attach = on_attach,
settings = servers[server_name], settings = servers[server_name],
filetypes = (servers[server_name] or {}).filetypes, filetypes = (servers[server_name] or {}).filetypes,
} }
@ -159,7 +163,6 @@ servers = {
for server_name, server_settings in pairs(servers) do for server_name, server_settings in pairs(servers) do
lspconfig[server_name].setup { lspconfig[server_name].setup {
capabilities = capabilities, capabilities = capabilities,
on_attach = on_attach,
settings = server_settings, settings = server_settings,
filetypes = (servers[server_name] or {}).filetypes, filetypes = (servers[server_name] or {}).filetypes,
} }
@ -186,7 +189,7 @@ local setup_godot_dap = function()
} }
end end
vim.diagnostic.config({ virtual_lines = true }) vim.diagnostic.config({ virtual_text = true })
vim.lsp.enable({ "ltex_plus" }) vim.lsp.enable({ "ltex_plus" })
setup_godot_dap() setup_godot_dap()