neovim related home variables should be set with the neovim module

Zynh Ludwig 2024-05-30 15:04:10 -07:00
parent 3e60e27695
commit 5e218dc319
2 changed files with 6 additions and 5 deletions

View File

@ -22,11 +22,6 @@
home.file = { }; home.file = { };
home.sessionVariables = {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
# wayland.windowManager.hyprland = { # wayland.windowManager.hyprland = {
# enable = true; # enable = true;
# package = pkgs.hyprland; # package = pkgs.hyprland;

View File

@ -39,6 +39,12 @@ in
withPython3 = true; withPython3 = true;
withRuby = true; withRuby = true;
# Set nvim as manpager and default editor
home.sessionVariables = {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
# TODO: nvim config nix import # TODO: nvim config nix import
extraLuaConfig = '' extraLuaConfig = ''
-- bootstrap lazy.nvim, LazyVim and your plugins -- bootstrap lazy.nvim, LazyVim and your plugins