Last active
December 11, 2015 20:58
-
-
Save todb-r7/4658778 to your computer and use it in GitHub Desktop.
My .vimrc.after (for use with Metasploit)
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
" If using Janus, then this should be .vimrc.after | |
" Technically this is really a gvimrc but who's counting. | |
set nocompatible | |
colorscheme slate | |
filetype plugin indent on | |
set hls | |
" Pretty standard Ruby default tab indentation | |
set tabstop=2 softtabstop=2 shiftwidth=2 expandtab shiftround smarttab | |
" Make gq a little more compact. | |
set textwidth=72 | |
" http://vim.wikia.com/wiki/Highlight_unwanted_spaces | |
set list listchars=tab:»·,trail:· |
Currently, yes -- but we're angling to move to soft tabs instead of hard tabs Real Soon Now. Feel free to add today, but know that it may change in one to four weeks.
Make sure to let me know. I'll need to merge your gist into my fork.
ecarey-r7, you probably know this, but the softtab thing did occur.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey Tod, is this still the defacto configuration? I'm creating an
editor
cookbook which will include avim
recipe for the Metasploit Dev. Env.