mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 04:15:38 +00:00
243 lines
7.4 KiB
Lua
243 lines
7.4 KiB
Lua
if vim.g.vscode then
|
|
return
|
|
end
|
|
|
|
local Remap = require("halfdan.keymap")
|
|
local nnoremap = Remap.nnoremap
|
|
local inoremap = Remap.inoremap
|
|
|
|
vim.fn.sign_define("DiagnosticSignError", {text = "", texthl = "DiagnosticSignError"})
|
|
vim.fn.sign_define("DiagnosticSignWarn", {text = "", texthl = "DiagnosticSignWarn"})
|
|
vim.fn.sign_define("DiagnosticSignInfo", {text = "", texthl = "DiagnosticSignInfo"})
|
|
-- vim.fn.sign_define("DiagnosticSignHint", {text = "", texthl = "DiagnosticSignHint"})
|
|
|
|
-- Set Default Prefix.
|
|
-- Note: You can set a prefix per lsp server in the lv-globals.lua file
|
|
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
|
|
vim.lsp.diagnostic.on_publish_diagnostics, {
|
|
signs = true,
|
|
underline = true,
|
|
}
|
|
)
|
|
|
|
-- Setup for nvim-notify
|
|
vim.lsp.set_log_level(2)
|
|
|
|
local convert_lsp_log_level_to_neovim_log_level = function(lsp_log_level)
|
|
if lsp_log_level == 1 then
|
|
return 4
|
|
elseif lsp_log_level == 2 then
|
|
return 3
|
|
elseif lsp_log_level == 3 then
|
|
return 2
|
|
elseif lsp_log_level == 4 then
|
|
return 1
|
|
end
|
|
end
|
|
|
|
local levels = {
|
|
"ERROR",
|
|
"WARN",
|
|
"INFO",
|
|
"DEBUG",
|
|
[0] = "TRACE",
|
|
}
|
|
---@diagnostic disable-next-line: unused-vararg
|
|
vim.lsp.handlers["window/showMessage"] = function(_, result, ...)
|
|
if require("vim.lsp.log").should_log(convert_lsp_log_level_to_neovim_log_level(result.type)) then
|
|
vim.notify(result.message, levels[result.type])
|
|
end
|
|
end
|
|
|
|
-- symbols for autocomplete
|
|
vim.lsp.protocol.CompletionItemKind = {
|
|
" (Text) ",
|
|
" (Method)",
|
|
" (Function)",
|
|
" (Constructor)",
|
|
" ﴲ (Field)",
|
|
"[] (Variable)",
|
|
" (Class)",
|
|
" ﰮ (Interface)",
|
|
" (Module)",
|
|
" 襁 (Property)",
|
|
" (Unit)",
|
|
" (Value)",
|
|
" 練 (Enum)",
|
|
" (Keyword)",
|
|
" (Snippet)",
|
|
" (Color)",
|
|
" (File)",
|
|
" (Reference)",
|
|
" (Folder)",
|
|
" (EnumMember)",
|
|
" ﲀ (Constant)",
|
|
" ﳤ (Struct)",
|
|
" (Event)",
|
|
" (Operator)",
|
|
" (TypeParameter)"
|
|
}
|
|
|
|
|
|
-- Diagnostic keymaps
|
|
vim.api.nvim_set_keymap('n', '<leader>e', '<cmd>Lspsaga show_line_diagnostics<CR>', { noremap = true, silent = true })
|
|
vim.api.nvim_set_keymap('n', '<leader>q', '<cmd>lua vim.diagnostic.setloclist()<CR>', { noremap = true, silent = true })
|
|
|
|
-- LSP settings
|
|
local lsp_status = require('lsp-status')
|
|
lsp_status.register_progress()
|
|
|
|
local lspconfig = require 'lspconfig'
|
|
local configs = require 'lspconfig.configs'
|
|
|
|
-- 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,
|
|
})
|
|
|
|
local on_attach = function(client, bufnr)
|
|
nnoremap("gd", "<cmd>Lspsaga peek_definition<CR>")
|
|
nnoremap("<leader>gd", function ()
|
|
vim.lsp.buf.definition()
|
|
end)
|
|
nnoremap("gD", function() vim.lsp.buf.declaration() end)
|
|
nnoremap("K", "<cmd>Lspsaga hover_doc<CR>")
|
|
nnoremap("gW", function() vim.lsp.buf.workspace_symbol() end)
|
|
nnoremap("<leader>vd", function() vim.diagnostic.open_float() end)
|
|
nnoremap("[d", "<cmd>Lspsaga diagnostic_jump_next<CR>")
|
|
nnoremap("]d", "<cmd>Lspsaga diagnostic_jump_prev<CR>")
|
|
nnoremap("<leader>ca", "<cmd>Lspsaga code_action<CR>")
|
|
nnoremap("gr", function() vim.lsp.buf.references() end)
|
|
nnoremap("<leader>rn", "<cmd>Lspsaga rename<CR>")
|
|
nnoremap("<leader>cl", function() vim.lsp.codelens.run() end)
|
|
nnoremap("<leader>fa", function() vim.lsp.buf.format{async = true} end)
|
|
inoremap("<C-h>", function() vim.lsp.buf.signature_help() end)
|
|
|
|
lsp_status.on_attach(client, bufnr)
|
|
end
|
|
|
|
local function config(_config)
|
|
_config = vim.tbl_deep_extend("force", {
|
|
log_level = vim.lsp.protocol.MessageType.Log,
|
|
message_level = vim.lsp.protocol.MessageType.Log,
|
|
capabilities = require("cmp_nvim_lsp").default_capabilities(vim.lsp.protocol.make_client_capabilities()),
|
|
on_attach = on_attach,
|
|
}, _config or {})
|
|
|
|
-- Set default client capabilities plus window/workDoneProgress
|
|
_config.capabilities = vim.tbl_extend('keep', _config.capabilities or {}, lsp_status.capabilities)
|
|
|
|
return _config
|
|
end
|
|
|
|
-- Enable the following language servers
|
|
-- local servers = { 'gopls', 'julials', 'rust_analyzer', 'pyright' }
|
|
-- for _, lsp in ipairs(servers) do
|
|
-- lspconfig[lsp].setup(config())
|
|
-- end
|
|
|
|
require'lspconfig'.lua_ls.setup {
|
|
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),
|
|
},
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
telemetry = {
|
|
enable = false,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
require('rust-tools').setup({
|
|
tools = {
|
|
runnables = {
|
|
use_telescope = true,
|
|
},
|
|
inlay_hints = {
|
|
auto = true,
|
|
parameter_hints_prefix = "",
|
|
other_hints_prefix = "",
|
|
}
|
|
},
|
|
server = {
|
|
on_attach = on_attach,
|
|
settings = {
|
|
["rust-analyzer"] = {
|
|
checkOnSave = {
|
|
command = "clippy",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
|
|
local lexical_config = {
|
|
filetypes = { "elixir", "eelixir", "heex" },
|
|
cmd = { "/Users/fbecker/code/lexical/_build/dev/package/lexical/bin/start_lexical.sh" },
|
|
settings = {},
|
|
}
|
|
|
|
if not configs.lexical then
|
|
configs.lexical = {
|
|
default_config = {
|
|
filetypes = lexical_config.filetypes,
|
|
cmd = lexical_config.cmd,
|
|
root_dir = function(fname)
|
|
return lspconfig.util.root_pattern("mix.exs", ".git")(fname) or vim.loop.os_homedir()
|
|
end,
|
|
-- optional settings
|
|
settings = lexical_config.settings,
|
|
},
|
|
}
|
|
end
|
|
|
|
lspconfig.lexical.setup({})
|
|
|
|
lspconfig.gleam.setup({})
|
|
|