Random changes for void/xfce x11 setup.
This commit is contained in:
+15
-4
@@ -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" })
|
||||
|
||||
Reference in New Issue
Block a user