summaryrefslogtreecommitdiff
path: root/vim.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2018-08-21 10:56:28 -0700
committerBen Sima <ben@bsima.me>2018-08-21 10:56:28 -0700
commit82409d0661e26be5c28a74cca01e492a0ac331c6 (patch)
tree3ed334274b1389dfa4de1becc3dac79964fb59ed /vim.nix
parente289f89eb5d0c386de0e991ba2619e71dccbab6e (diff)
Move all settings to vimrc, merge vim.nix into home.nix
Diffstat (limited to 'vim.nix')
-rw-r--r--vim.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/vim.nix b/vim.nix
deleted file mode 100644
index ddc0b5a..0000000
--- a/vim.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, vimUtils, fetchFromGitHub}:
-
-{
- enable = true;
- plugins = [
- "ctrlp"
- "fugitive"
- "editorconfig-vim"
- "gitgutter"
- "surround"
- ];
- settings = {
- ignorecase = true;
- expandtab = true;
- history = 1000;
- tabstop = 4;
- };
- extraConfig = builtins.readFile ./vimrc;
-}