dotfiles/modules/programs/nvim/init.lua

237 lines
7.1 KiB
Lua
Raw Normal View History

vim.loader.enable()
2023-04-16 18:00:05 +02:00
-- Load custom treesitter grammar for org filetype
require("orgmode").setup_ts_grammar()
2023-02-16 18:03:55 +01:00
require("nvim-treesitter.configs").setup({
2023-02-17 22:09:13 +01:00
sync_install = false,
auto_install = false,
highlight = {
enable = true,
2023-04-16 18:00:05 +02:00
-- Required for spellcheck, some LaTex highlights and
-- code block highlights that do not have ts grammar
additional_vim_regex_highlighting = { "org" },
2023-02-17 22:09:13 +01:00
},
2023-02-16 18:03:55 +01:00
})
2023-02-17 12:38:44 +01:00
2023-03-07 14:26:37 +01:00
-- load cmp on InsertEnter
vim.api.nvim_create_autocmd("InsertEnter", {
callback = function()
local cmp = require("cmp")
local luasnip = require("luasnip")
require("luasnip.loaders.from_vscode").lazy_load()
2023-03-07 14:26:37 +01:00
require("copilot_cmp").setup()
2023-03-07 14:26:37 +01:00
cmp.setup({
formatting = {
format = require("lspkind").cmp_format({
mode = "symbol", -- show only symbol annotations
maxwidth = 50, -- prevent the popup from showing more than provided characters
ellipsis_char = "...", -- when popup menu exceed maxwidth, the truncated part would show ellipsis_char instead
symbol_map = {
Copilot = "",
},
}),
2023-02-19 13:24:22 +01:00
},
2023-03-07 14:26:37 +01:00
snippet = {
-- REQUIRED - you must specify a snippet engine
expand = function(args)
require("luasnip").lsp_expand(args.body)
end,
},
mapping = cmp.mapping.preset.insert({
["<C-b>"] = cmp.mapping.scroll_docs(-4),
["<C-f>"] = cmp.mapping.scroll_docs(4),
["<C-Space>"] = cmp.mapping.complete(),
["<C-e>"] = cmp.mapping.abort(),
["<CR>"] = cmp.mapping.confirm({ select = true }),
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end, { "i", "s" }),
["<S-Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end, { "i", "s" }),
}),
sources = {
{ name = "buffer", priority = 1 },
{ name = "copilot", priority = 8 },
{ name = "luasnip", priority = 7 },
{ name = "nvim_lsp", priority = 9 },
{ name = "orgmode", priority = 9 },
},
})
end,
2023-02-17 12:38:44 +01:00
})
2023-02-18 16:25:09 +01:00
local lsp_lines = require("lsp_lines")
lsp_lines.setup()
-- Disable virtual_text since it's redundant due to lsp_lines.
vim.diagnostic.config({
virtual_text = false,
})
2023-02-18 13:35:11 +01:00
-- The nvim-cmp almost supports LSP's capabilities so You should advertise it to LSP servers..
local capabilities = require("cmp_nvim_lsp").default_capabilities()
vim.o.foldcolumn = "1" -- '0' is not bad
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
vim.o.foldlevelstart = 99
vim.o.foldenable = true
vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]
vim.o.statuscolumn = "%= "
-- FIXME: figure out how to put on the other side without having to do a lot of shifting
.. "%s" -- sign column
.. "%{%" -- evaluate this, and then evaluate what it returns
.. "&number ?"
.. "(v:relnum ?"
-- when showing relative numbers, make sure to pad so things don't shift as you move the cursor
.. 'printf("%"..len(line("$")).."s", v:relnum)'
.. ":"
.. "v:lnum"
.. ")"
.. ":"
.. '""'
.. " " -- space between lines and fold
.. "%}"
.. "%= "
.. "%#FoldColumn#" -- highlight group for fold
.. "%{" -- expression for showing fold expand/colapse
.. "foldlevel(v:lnum) > foldlevel(v:lnum - 1)" -- any folds?
.. "? (foldclosed(v:lnum) == -1" -- currently open?
.. '? ""' -- point down
.. ': ""' -- point to right
.. ")"
.. ': " "' -- blank for no fold, or inside fold
.. "}"
.. "%= " -- spacing between end of column and start of text
-- Using ufo provider need remap `zR` and `zM`. If Neovim is 0.6.1, remap yourself
2023-03-26 18:28:49 +02:00
require("which-key").register({
z = {
R = { require("ufo").openAllFolds, "Open all folds" },
M = { require("ufo").closeAllFolds, "Close all folds" },
},
})
-- Tell the server the capability of foldingRange,
-- Neovim hasn't added foldingRange to default capabilities, users must add it manually
capabilities.textDocument.foldingRange = {
dynamicRegistration = false,
lineFoldingOnly = true,
}
require("ufo").setup()
2023-02-27 23:48:21 +01:00
require("lspsaga").setup({
symbol_in_winbar = {
enable = false,
},
2023-03-05 14:04:00 +01:00
lightbulb = {
2023-04-10 15:14:42 +02:00
enable = false,
enable_in_insert = false,
2023-03-05 14:04:00 +01:00
},
2023-02-27 23:48:21 +01:00
})
2023-02-18 13:35:11 +01:00
local lspconfig = require("lspconfig")
2023-02-18 16:25:09 +01:00
local on_attach_def = function(_, bufnr)
2023-03-26 18:28:49 +02:00
require("which-key").register({
2023-02-27 23:48:21 +01:00
K = { "<cmd>Lspsaga hover_doc ++quiet<cr>", "show info" },
2023-02-18 16:25:09 +01:00
["<leader>"] = {
l = {
2023-02-27 23:48:21 +01:00
d = { "<cmd>Lspsaga show_cursor_diagnostics<cr>", "open diagnostic window" },
c = { "<cmd>Lspsaga code_action<cr>", "code action" },
r = { "<cmd>Lspsaga rename<cr>", "rename" },
2023-02-27 23:53:35 +01:00
i = { "<cmd>Lspsaga hover_doc ++keep<cr>", "show info (sticky)" },
2023-02-18 16:25:09 +01:00
f = {
2023-02-18 13:35:11 +01:00
function()
vim.lsp.buf.format({ async = true })
end,
"format (lsp)",
2023-02-18 16:25:09 +01:00
mode = { "n", "v" },
2023-02-18 13:35:11 +01:00
},
2023-02-18 16:25:09 +01:00
},
t = {
l = { lsp_lines.toggle, "lsp lines" },
},
2023-02-18 13:35:11 +01:00
},
g = {
2023-04-09 19:31:14 +02:00
d = { "<cmd>Lspsaga peek_definition<cr>", "Goto definition" },
t = { "<cmd>Lspsaga peek_type_definition<cr>", "Goto type defininition" },
h = { "<cmd>Lspsaga lsp_finder<CR>", "Lsp finder" },
r = { "<cmd>Telescope lsp_references<cr>", "Goto reference" },
D = { vim.lsp.buf.declaration, "Goto declaration" },
I = { "<cmd>Telescope lsp_implementations<cr>", "Goto implementation" },
},
["["] = {
d = { "<cmd>Lspsaga diagnostic_jump_prev<cr>", "Previous diagnostic" },
},
["]"] = {
d = { "<cmd>Lspsaga diagnostic_jump_next<cr>", "Next diagnostic" },
2023-02-18 13:35:11 +01:00
},
2023-02-18 17:55:20 +01:00
}, { buffer = bufnr, silent = true })
2023-02-18 13:35:11 +01:00
end
2023-02-17 22:09:13 +01:00
local lspconfig_default_options = {
on_attach = on_attach_def,
capabilities = capabilities,
flags = {
debounce_text_changes = 100,
},
}
---function to add default options to lspconfig
---@param lsp string
---@param options table
---@return nil
local function lspconfig_setup(lsp, options)
local final_options = vim.tbl_deep_extend("force", lspconfig_default_options, options)
2023-02-17 22:09:13 +01:00
lspconfig[lsp].setup(final_options)
2023-02-17 12:38:44 +01:00
end
2023-03-13 09:07:50 +01:00
local servers = {
"bashls",
"nil_ls",
"pylsp",
"ruff_lsp",
"rust_analyzer",
}
2023-02-17 12:38:44 +01:00
for _, lsp in ipairs(servers) do
2023-02-17 22:09:13 +01:00
lspconfig_setup(lsp, {})
2023-02-17 12:38:44 +01:00
end
2023-02-17 22:09:13 +01:00
lspconfig_setup("lua_ls", {
settings = {
Lua = {
runtime = {
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
version = "LuaJIT",
},
diagnostics = {
-- Get the language server to recognize the `vim` global
globals = { "vim" },
},
workspace = {
-- Make the server aware of Neovim runtime files
library = vim.api.nvim_get_runtime_file("", true),
checkThirdParty = false,
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = {
enable = false,
},
format = {
enable = false,
},
},
},
2023-02-17 12:38:44 +01:00
})