add nixvim as text editor
This commit is contained in:
parent
90e5c5528b
commit
da68527e3c
2 changed files with 8 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
# ./librewolf.nix
|
||||
./zsh.nix
|
||||
./eza.nix
|
||||
./nixvim.nix
|
||||
];
|
||||
|
||||
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
|
||||
|
@ -52,7 +53,6 @@
|
|||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nano";
|
||||
DEFAULT_BROWSER = "${lib.getExe pkgs.firefox}";
|
||||
# Allow XWayland apps to not be weird after turning off xwayland scaling in hyprland.conf
|
||||
GDK_SCALE = 1;
|
||||
|
|
7
home-manager/nixvim.nix
Normal file
7
home-manager/nixvim.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{config, pkgs, ... }: {
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
|
||||
plugins.neotree.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue