diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-08 13:08:37 +0200 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-08 19:58:30 +0200 |
| commit | 770c0cfc08bd73ada6e7754473d69fe9e2d17dc2 (patch) | |
| tree | 3c1da3053ed03bbdc2e8c4e4fbf26947b7ef97ae /artix | |
| parent | 218a690b155d9e7d47bb2e7487a150c16c8f482f (diff) | |
rewrite config in nix
Diffstat (limited to 'artix')
| -rw-r--r-- | artix/home/.config/nvim/init.lua | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/artix/home/.config/nvim/init.lua b/artix/home/.config/nvim/init.lua index ba4dbc2..b9efd3a 100644 --- a/artix/home/.config/nvim/init.lua +++ b/artix/home/.config/nvim/init.lua @@ -25,7 +25,7 @@ vim.o.swapfile = false vim.o.cursorline = true -- •⏎.·○◦ ---vim.o.list = true +vim.o.list = true vim.o.listchars = "tab:🡪 ,trail:·,eol:⏎,space:·,multispace:·,lead:·,leadmultispace:·" vim.o.completeopt = "fuzzy,menuone,noselect" @@ -73,7 +73,13 @@ vim.pack.add({ { src = "https://github.com/windwp/nvim-autopairs" } }) -vim.cmd [[colorscheme tokyonight-night]] +vim.cmd [[ + colorscheme tokyonight-night + highlight Normal guibg=none + highlight NonText guibg=none + highlight Normal ctermbg=none + highlight NonText ctermbg=none +]] require("blink.cmp").setup({ keymap = { preset = "enter" } }) @@ -160,7 +166,7 @@ vim.lsp.config("lua_ls", { -- do not enable jdtls here, we let the nvim-jdtls plugin do everything vim.lsp.enable({ - "lua_ls", "cssls", "html", "jsonls", "clangd", "ts_ls", + "lua_ls", "cssls", "html", "jsonls", "clangd", "ts_ls", "nil", "tinymist", "marksman", "lemminx", "rust_analyzer", "pyright" }) |
