Skip to content

Instantly share code, notes, and snippets.

@juo6442
Last active December 17, 2020 15:07
Show Gist options
  • Select an option

  • Save juo6442/e98a2bd99f1ddccb24bfb34daba633e0 to your computer and use it in GitHub Desktop.

Select an option

Save juo6442/e98a2bd99f1ddccb24bfb34daba633e0 to your computer and use it in GitHub Desktop.
"" 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