dotfiles/vimrc
2016-10-25 22:33:51 +02:00

53 lines
760 B
VimL

" .vimrc
" Visual
syntax enable
colorscheme ron
set background=dark
set encoding=utf8
set number
set cursorline
highlight term=bold cterm=bold
highlight trailingWhiteSpaces ctermbg=DarkYellow guibg=DarkYellow
"set list
"set listchars=tab:<-
" Tabs
set smarttab
set tabstop=4
set shiftwidth=4
set ai
set si
" Searching
set hlsearch
set showmatch
set incsearch
" Splitting
set splitbelow
set splitright
" KeyRemapping
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
" Disable arrow keys
map <Right> <Nop>
map <Left> <Nop>
map <Up> <Nop>
map <Down> <Nop>
map! <Right> <Nop>
map! <Left> <Nop>
map! <Up> <Nop>
map! <Down> <Nop>
" Misc
set mouse=n
noremap <Leader>m mmHmt:%s/<C-V><cr>//ge<cr>'tzt'm