200 current 2025-01-11 03:31:21 25.05.20241217.d3c42f1 6.6.66 *
This commit is contained in:
@@ -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;
|
||||
|
||||
6
home/programs/nvim/plugins/nerdcommenter.lua
Normal file
6
home/programs/nvim/plugins/nerdcommenter.lua
Normal 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
|
||||
@@ -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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user