mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
users/foo-dogsquared/setups/development: set up text editor of choice
This commit is contained in:
parent
722bdaf3cc
commit
79a2e21b5d
@ -36,11 +36,7 @@ in
|
||||
};
|
||||
|
||||
# Set up with these variables.
|
||||
systemd.user.sessionVariables = {
|
||||
PAGER = "moar";
|
||||
MANPAGER = "nvim +Man!";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
systemd.user.sessionVariables.PAGER = "moar";
|
||||
|
||||
# Add it to the laundry list.
|
||||
services.bleachbit.cleaners = [ "bash.history" ];
|
||||
|
@ -24,6 +24,22 @@ in
|
||||
servers.enable = true;
|
||||
};
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
package = pkgs.neovim-nightly;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
|
||||
withNodeJs = true;
|
||||
withPython3 = true;
|
||||
withRuby = true;
|
||||
};
|
||||
|
||||
systemd.user.sessionVariables = {
|
||||
MANPAGER = "nvim +Man!";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
cachix # Compile no more by using someone's binary cache!
|
||||
diffoscope # Oversized caffeine grinder.
|
||||
|
Loading…
Reference in New Issue
Block a user