Random changes for void/xfce x11 setup.

This commit is contained in:
2026-06-15 08:02:12 +02:00
parent 84b4a7d7b8
commit bb3d06a857
4 changed files with 55 additions and 49 deletions
+15 -4
View File
@@ -55,14 +55,25 @@ vim.pack.add({
{ src = 'https://github.com/sheerun/vim-polyglot' },
{ src = 'https://github.com/romus204/tree-sitter-manager.nvim' },
{ src = 'https://github.com/xiyaowong/transparent.nvim' },
{ src = "https://github.com/vague-theme/vague.nvim" },
{ src = "https://github.com/rebelot/kanagawa.nvim" },
})
require("mini.completion").setup()
require("tree-sitter-manager").setup()
require('vague').setup({ transparent = true, })
vim.cmd.colorscheme('vague')
require('kanagawa').setup({
commentStyle = { italic = false },
keywordStyle = { italic = false },
transparent = true,
overrides = function(colors)
return {
SignColumn = { bg = "none" },
LineNr = { bg = "none" },
CursorLineNr = { bg = "none" },
FoldColumn = { bg = "none" },
}
end,
})
vim.cmd.colorscheme('kanagawa')
-- Lsp specific, uses nvim-lspconfigs with the below
vim.lsp.enable({ "gopls", "ols" })