Skip to content

Instantly share code, notes, and snippets.

@Javiani
Last active August 29, 2015 14:18
Show Gist options
  • Save Javiani/e2b646cd20d5b9f4c24d to your computer and use it in GitHub Desktop.
Save Javiani/e2b646cd20d5b9f4c24d to your computer and use it in GitHub Desktop.
.vimrc
" =======================================
" .vimrc file
" =======================================
"
" My default config and plugins for vim :)
" Weslley Araujo <http://github.com/weslleyaraujo>
" =======================================
" =======================================
" My default configs
" =======================================
syntax enable " set syntax on
set encoding=utf-8
set wildmenu " set vim menu
set ai " set auto tab/indent
set expandtab
set tabstop=4
set shiftwidth=4
set ruler " show cursor position
set cursorline " hightlight for actual line
set number " show numbers
set hlsearch " set highlight for search
set nowrap " set no wrap for big lines
"set autoindent " set autoindent
set nobackup " set no backup
set background=dark
autocmd BufNewFile,BufRead *.html.ejs set syntax=html
autocmd BufNewFile,BufRead *.erb set syntax=html
" setting theme
colorscheme monokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment