190 current 2025-01-10 22:54:37 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-10 22:54:47 -05:00
parent 2d506487b9
commit 6ec3bb0584
2 changed files with 15 additions and 0 deletions

View File

@@ -31,6 +31,10 @@
plugin = goyo-vim;
config = toLuaFile ./plugins/goyo.lua;
}
{
plugin = tokyonight-nvim;
config = toLuaFile ./plugins/tokyonight.lua;
}
];
# extraConfig = lib.fileContents ./init.vim;

View File

@@ -0,0 +1,11 @@
-- Tokyonight configuration in Lua
vim.g.tokyonight_style = "night"
vim.g.tokyonight_italic_functions = true
vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" }
vim.g.tokyonight_colors = {
bg_dark = "#ff0000",
bg = "#0d0d0d",
fg = "#e3e1e1",
}