summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-08-07 19:49:42 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-08-07 19:49:42 +0200
commit4c6a5f4dfa8601347f541a064bfa6b74f6b743d3 (patch)
tree958410ba3fe04612201689ee87a1306997ee3789 /modules/examples
parent7b379f115c25b01aed4740ba9b36c7b2eeed01a6 (diff)
lnl: disable vim guiSupport
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/lnl.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix
index be1db06..828e656 100644
--- a/modules/examples/lnl.nix
+++ b/modules/examples/lnl.nix
@@ -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
};
})