1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

lnl: disable vim guiSupport

This commit is contained in:
Daiderd Jordan 2018-08-07 19:49:42 +02:00
parent 7b379f115c
commit 4c6a5f4dfa
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -43,11 +43,12 @@
pkgs.shellcheck
pkgs.silver-searcher
pkgs.kitty
pkgs.qes
pkgs.kitty
pkgs.lnl-zsh-completions
pkgs.lnl-git-statusbar
pkgs.lnl-vim
pkgs.lnl-zsh-completions
];
services.khd.enable = true;
@ -348,7 +349,7 @@
unset __ETC_ZSHENV_SOURCED
unset __ETC_ZPROFILE_SOURCED
host=$(hostname -s | awk -F'-' '{print tolower($NF)}')
exec tmux new-session -A -s $host
exec tmux new-session -A -s "$host" "$@"
}
'';
@ -368,6 +369,7 @@
environment.variables.SHELLCHECK_OPTS = "-e SC1008";
environment.variables.LANG = "en_US.UTF-8";
environment.shellAliases.e = "$EDITOR";
environment.shellAliases.g = "git log --pretty=color -32";
environment.shellAliases.gb = "git branch";
environment.shellAliases.gc = "git checkout";
@ -449,6 +451,7 @@
'';
vim_configurable = super.vim_configurable.override {
guiSupport = "no"; # Euh, gui vim?
ftNixSupport = false; # enable using a custom vim-nix
};
})