Last active
December 17, 2020 15:07
-
-
Save juo6442/e98a2bd99f1ddccb24bfb34daba633e0 to your computer and use it in GitHub Desktop.
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
| "" General | |
| set softtabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set cindent | |
| set number | |
| set formatoptions-=r | |
| set hlsearch | |
| set ignorecase | |
| set incsearch | |
| set showmatch | |
| set ruler | |
| set title | |
| set noswapfile | |
| syntax on | |
| "" Color scheme | |
| colorscheme elflord | |
| "" Keymap | |
| nmap <Up> <C-Y>k | |
| nmap <Down> <C-E>j | |
| nmap <F7> :NERDTree<CR> | |
| nmap <F8> :Tlist<CR> | |
| "" Trailing whitespaces | |
| highlight TrailingWhitespace ctermbg=red guibg=red | |
| match TrailingWhitespace /\s\+$/ | |
| autocmd FileType c,cpp,java,xml,sql autocmd BufWritePre <buffer> :%s/\s\+$//e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment