This commit is contained in:
snarmph 2026-01-12 06:34:27 +01:00
parent 189b33b5b3
commit 949f4d8565
5 changed files with 39 additions and 1 deletions

View file

@ -34,6 +34,7 @@ vim.o.updatetime = 100
vim.keymap.set("n", "<Esc><Esc>", ":noh<CR>", { silent = true })
vim.keymap.set("v", "ga", ":EasyAlign<CR>")
vim.keymap.set("v", "<leader>c", '"+y', { desc = "Copy to system clipboard" })
-- COLORSCHEME
-- vim.cmd.colorscheme "habamax.nvim"
@ -61,6 +62,7 @@ require("lspconfig").clangd.setup({
})
vim.lsp.enable('gopls')
vim.lsp.enable('rust-analyzer')
vim.diagnostic.config({
virtual_text = false,