Skip to content

Instantly share code, notes, and snippets.

@kshenoy
Created March 24, 2020 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshenoy/95f4bcadb0688bd5712ff2eb61e99f90 to your computer and use it in GitHub Desktop.
Save kshenoy/95f4bcadb0688bd5712ff2eb61e99f90 to your computer and use it in GitHub Desktop.
Starting vim with minimal settings
vim -N --cmd 'set rtp=$VIM,$VIMRUNTIME,$VIM/after' -U NONE -u <(echo 'set rtp+=~/.vim/bundle/vim-signature')
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