diff options
author | lassulus <lass@blue.r> | 2018-10-18 12:54:58 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-18 12:54:58 +0200 |
commit | 383c1dba38f8f61b61e5325b2cb57578766027a8 (patch) | |
tree | a0a107ded678e06a4e12f9c947ccb0cebc4eec8a | |
parent | 8e6fcec17657935fe1a6a9f4f7496bc7459ca994 (diff) | |
parent | 5afd672ac58e1db25a2b602055ba5baf0d204558 (diff) |
Merge remote-tracking branch 'ni/master'
-rw-r--r-- | tv/2configs/gitrepos.nix | 2 | ||||
-rw-r--r-- | tv/2configs/vim.nix | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tv/2configs/gitrepos.nix b/tv/2configs/gitrepos.nix index a8cbe0f..62c90d4 100644 --- a/tv/2configs/gitrepos.nix +++ b/tv/2configs/gitrepos.nix @@ -153,7 +153,7 @@ let { public = false; hooks = hooks // { post-receive = /* sh */ '' - (${hooks.post-receive or ""}) + (${hooks.post-receive or ":"}) ${cgit-clear-cache}/bin/cgit-clear-cache ''; }; diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 400d179..2ac7f75 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -15,6 +15,7 @@ let { extra-runtimepath = concatMapStringsSep "," (pkg: "${pkg.rtp}") [ pkgs.vimPlugins.undotree + pkgs.vimPlugins.vim-elixir (pkgs.vimUtils.buildVimPlugin { name = "vim-syntax-jq"; src = pkgs.fetchgit { |