Implented Kanagawa theme

This commit is contained in:
Asdam9
2026-07-21 23:56:43 +02:00
parent e76024ee28
commit fb44535d0c

View File

@@ -1,5 +1,4 @@
{ pkgs, inputs, ... }: {
{ inputs, ... }: {
flake.nixosModules.nvf = {pkgs, ...}: {
environment.systemPackages = [
];
@@ -10,11 +9,6 @@
programs.nvf = {
enable = true;
settings.vim = {
theme.enable = true;
theme.name = "tokyonight";
theme.style = "night";
#netrw.enable = true;
statusline.lualine.enable = true;
telescope.enable = true;
autocomplete.nvim-cmp.enable = true;
@@ -38,7 +32,22 @@
nix.enable = true;
go.enable = true;
lua.enable = true;
typst.enable = true;
};
lazy.plugins = {
"kanagawa.nvim" = {
package = pkgs.vimPlugins.kanagawa-nvim;
setupModule = "kanagawa";
setupOpts = {
transparent = true;
dimInactive = false;
};
after = "vim.cmd(\"colorscheme kanagawa\")";
};
};
opts = {
tabstop = 4;
softtabstop = 4;
@@ -63,6 +72,7 @@
signcolumn = "yes";
colorcolumn = "80";
};
keymaps = [
{
key = "<leader>pv";
@@ -135,7 +145,6 @@
}
];
};
};
};
}