Created
March 9, 2017 08:54
-
-
Save anonymous/a2b9c122e188283958a6ef0e1b0d000b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vim' = pkgs.vimHugeX; # this one has gvim in PATH | |
vim = vim'.customize { # this one has no gvim in PATH :( | |
name = "vim"; | |
vimrcConfig.customRC = '' | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set nocompatible | |
''; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment