Compare commits

...

2 commits

Author SHA1 Message Date
efc0440d61 Common/neovim: set as default editor 2024-02-05 14:31:32 +01:00
d2beeff928 Common/neovim: autodetect indenting 2024-02-05 14:31:16 +01:00

View file

@ -7,6 +7,10 @@
plugins = with pkgs.vimPlugins; [
catppuccin-nvim
];
defaultEditor = true;
extraConfig = ''
filetype indent on
'';
};
};
}