enable nixvim
This commit is contained in:
parent
821a8561bd
commit
40fa5b90e6
3 changed files with 13 additions and 7 deletions
|
@ -13,7 +13,8 @@
|
|||
./gnupg.nix
|
||||
./kitty.nix
|
||||
./mpv.nix
|
||||
./neovim.nix
|
||||
#./neovim.nix
|
||||
./nixvim.nix
|
||||
./starship.nix
|
||||
./tmux.nix
|
||||
./virt-manager.nix
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
xdg.desktopEntries = {
|
||||
"nvim".name = "Neovim wrapper";
|
||||
"nvim".exec = "nvim %F";
|
||||
"nvim".noDisplay = true;
|
||||
};
|
||||
#xdg.desktopEntries = {
|
||||
# "nvim".name = "Neovim wrapper";
|
||||
# "nvim".exec = "nvim %F";
|
||||
# "nvim".noDisplay = true;
|
||||
#};
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
|
|
5
home/programs/nixvim.nix
Normal file
5
home/programs/nixvim.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
_:{
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue