neovim related home variables should be set with the neovim module
parent
3e60e27695
commit
5e218dc319
5
home.nix
5
home.nix
|
@ -22,11 +22,6 @@
|
|||
|
||||
home.file = { };
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
|
||||
# wayland.windowManager.hyprland = {
|
||||
# enable = true;
|
||||
# package = pkgs.hyprland;
|
||||
|
|
|
@ -39,6 +39,12 @@ in
|
|||
withPython3 = true;
|
||||
withRuby = true;
|
||||
|
||||
# Set nvim as manpager and default editor
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
|
||||
# TODO: nvim config nix import
|
||||
extraLuaConfig = ''
|
||||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||
|
|
Loading…
Reference in New Issue