Created
January 9, 2018 19:08
-
-
Save jonasmello/c3524f449b1693d642f5039591b4bdeb to your computer and use it in GitHub Desktop.
Vimrc file for Windows. Put on ~/ directory
This file contains hidden or 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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set number | |
colorscheme twilight256 | |
let g:airline_powerline_fonts = 1 | |
set t_Co=256 | |
:set cursorline | |
set expandtab | |
set shiftwidth=2 | |
set tabstop=2 | |
set guifont=DejaVu_Sans_Mono:h10:cANSI | |
set encoding=utf-8 | |
set wildignore+=*.bmp,*.gif,*.ico,*.jpg,*.png,*.ico | |
set wildignore+=*.pdf,*.psd | |
set wildignore+=node_modules/*,bower_components/* | |
:set nowrap | |
:set hlsearch | |
map <c-f> :call JsBeautify()<cr> | |
" Lançar NERDTree no Startup: | |
" autocmd vimenter * NERDTree | |
" autocmd StdinReadPre * let s:std_in=1 | |
" autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif | |
" Map 'ctrl+N' to toggle NERDTree: | |
" map <C-n> :NERDTreeToggle<CR> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment