Created
March 24, 2020 02:12
-
-
Save kshenoy/95f4bcadb0688bd5712ff2eb61e99f90 to your computer and use it in GitHub Desktop.
Starting vim with minimal settings
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 -N --cmd 'set rtp=$VIM,$VIMRUNTIME,$VIM/after' -U NONE -u <(echo 'set rtp+=~/.vim/bundle/vim-signature') |
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
gvim -N --cmd 'set rtp=$VIM,$VIMRUNTIME,$VIM/after' -U NONE -u <(cat <<VIMRC | |
set rtp+=~/.vim/bundle/vim-signature | |
set rtp+=~/.vim/bundle/base16 | |
colorscheme gruvbox | |
VIMRC | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment