Last active
September 17, 2019 18:43
-
-
Save RobertoMachorro/401ad278aa1f40d8b2b7b2a1e1637a62 to your computer and use it in GitHub Desktop.
Basic VIMRC Config
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
" Roberto's VIMRC | |
" http://vimdoc.sourceforge.net/htmldoc/options.html | |
" :opt | |
set nobackup | |
set autoread | |
set ruler | |
set showcmd | |
set ff=unix | |
" Tabs | |
set tabstop=4 | |
set shiftwidth=4 | |
" Search | |
set ignorecase | |
"set smartcase | |
set incsearch | |
set hlsearch | |
" Code indentation zo zc zj zk | |
"set foldcolumn=1 | |
"set foldmethod=indent | |
"set foldminlines=10 | |
syntax enable | |
colorscheme default | |
"colorscheme darkblue | |
"colorscheme torte |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment