200 current 2025-01-11 03:31:21 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-11 03:31:30 -05:00
parent 39bc5edac1
commit e6941cd9d9
3 changed files with 13 additions and 1 deletions

View File

@@ -27,6 +27,8 @@
];
plugins = with pkgs.vimPlugins; [
vim-nix
coc-nvim
{
plugin = goyo-vim;
config = toLuaFile ./plugins/goyo.lua;
@@ -35,6 +37,10 @@
plugin = tokyonight-nvim;
config = toLuaFile ./plugins/tokyonight.lua;
}
{
plugin = nerdcommenter;
config = toLuaFile ./plugins/nerdcommenter.lua;
}
];
# extraConfig = lib.fileContents ./init.vim;

View File

@@ -0,0 +1,6 @@
vim.g.NERDSpaceDelims = 1;
vim.g.NERDAltDelims_c = 1;
-- the _ key is actually / because nvim/vim does not recognize that!
-- vmap <C-_> <plug>NERDCommenterToggle"
-- nmap <C-_> <plug>NERDCommenterToggle

View File

@@ -10,7 +10,7 @@ require("tokyonight").setup({
-- Change the "hint" color to the "orange" color, and make the "error" color bright red
on_colors = function(colors)
-- colors.hint = colors.orange
colors.bg = "#0d0d0d"
colors.bg = "#0d0d0d" -- dark af bruh
colors.fg = "#e3e1e1"
end
})