Bringing repo up to date

This commit is contained in:
2025-10-12 17:42:02 -04:00
parent 1a9f6bc5bd
commit 2ef5662c33
8 changed files with 647 additions and 163 deletions

View File

@@ -1,11 +1,6 @@
local vim = vim
-- vim.cmd [[
-- augroup LspCompletion
-- autocmd!
-- autocmd InsertEnter * setlocal omnifunc=v:lua.vim.lsp.omnifunc
-- autocmd TextChangedI * if pumvisible() == 0 | silent! lua vim.fn.complete(vim.fn.col('.'), vim.fn["vim.lsp.omnifunc"]()) | endif
-- augroup END
-- ]]
-- Enable LSP servers with proper configuration
vim.lsp.enable('lua_ls')
vim.lsp.enable('gopls', {
settings = {
@@ -29,30 +24,48 @@ vim.lsp.enable('gopls', {
},
})
vim.lsp.enable('nim_langserver')
-- Fix: Add proper configuration for pyright/basedpyright
-- For NixOS with basedpyright:
vim.lsp.enable('basedpyright', {
settings = {
basedpyright = {
analysis = {
typeCheckingMode = "basic",
autoSearchPaths = true,
useLibraryCodeForTypes = true,
diagnosticMode = "workspace",
},
}
}
})
require("lsp_signature").setup({
debug = false,
bind = true, -- registers signature handler
doc_lines = 10,
max_height = 12,
max_width = function() return math.floor(vim.api.nvim_win_get_width(0) * 0.8) end,
bind = true,
doc_lines = 5,
max_height = 8,
max_width = function() return math.floor(vim.api.nvim_win_get_width(0) * 0.7) end,
wrap = true,
floating_window = true, -- show the popup
floating_window_above_cur_line = true,
floating_window = true,
floating_window_above_cur_line = false,
floating_window_off_x = 1,
floating_window_off_y = 0,
-- IMPORTANT: dont inline (you can change later if you want)
hint_enable = true,
floating_window_off_y = 2,
-- hint_enable = true,
hint_enable = false,
hint_inline = function() return false end,
hint_prefix = "🐼 ",
-- hint_prefix = "🐼 ",
hint_prefix = "",
hint_scheme = "String",
hi_parameter = "LspSignatureActiveParameter",
handler_opts = { border = "rounded" },
always_trigger = false,
extra_trigger_chars = { "(", "," }, -- good default
zindex = 200,
auto_close_after = 5,
extra_trigger_chars = { "(", "," },
-- zindex = 200,
zindex = 50,
padding = "",
timer_interval = 200,
})