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.file = { };
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "nvim";
|
|
||||||
MANPAGER = "nvim +Man!";
|
|
||||||
};
|
|
||||||
|
|
||||||
# wayland.windowManager.hyprland = {
|
# wayland.windowManager.hyprland = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# package = pkgs.hyprland;
|
# package = pkgs.hyprland;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue