feat(editor): set neovim as default editor

This commit is contained in:
514fpv 2024-01-02 14:52:15 +08:00
parent 2dd911381c
commit 59a999046b
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

13
home/neovim/home.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs
, ... }: {
programs.neovim = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [ ];
plugins = with pkgs.vimPlugins; [ vim-nix ];
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
}