updated theme

This commit is contained in:
2026-08-11 17:39:01 +02:00
parent 8d657d0f8d
commit 2cbfe6946a
7 changed files with 526 additions and 45 deletions
+3 -11
View File
@@ -75,6 +75,9 @@ require("roslyn").setup({
config = { handlers = require("rzls.roslyn_handlers") },
})
-- Dedicated go Setup
require('go').setup()
-- Diagnostics Configuration
local sign = function(opts)
vim.fn.sign_define(opts.name, { texthl = opts.name, text = opts.text, numhl = "" })
@@ -135,14 +138,3 @@ require("lint").linters_by_ft = {
python = { "flake8" },
}
-- Dynamic LSP Keymaps (Loaded only when LSP attaches to a buffer)
vim.api.nvim_create_autocmd("LspAttach", {
callback = function(event)
local opts = { buffer = event.buf }
vim.keymap.set("n", "K", vim.lsp.buf.hover, opts)
vim.keymap.set("n", "gd", vim.lsp.buf.definition, opts)
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, opts)
vim.keymap.set("n", "<leader>ca", vim.lsp.buf.code_action, opts)
vim.keymap.set("n", "gr", vim.lsp.buf.references, opts)
end,
})