Last active
May 5, 2016 08:23
-
-
Save tomoTaka01/a62cecd19d6f62dbd7963ebbaa82d480 to your computer and use it in GitHub Desktop.
setting for vim (using solarized[ ~/.vim/colors/solarized.vim FYR:http://ethanschoonover.com/solarized] for the color). will add some more later...
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
set number | |
set title | |
set tabstop=4 | |
set shiftwidth=4 | |
"tab key 4 space | |
set softtabstop:0 | |
set expandtab | |
set smartindent | |
set list | |
"for colors | |
syntax enable | |
set background=dark | |
colorscheme solarized | |
imap <c-j> <esc> | |
"[ jump to corresponding { ( etc | |
nnoremap [ % |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment