1
0
Fork 0
vdotfiles/vimrc

97 lines
2 KiB
VimL
Raw Normal View History

set backspace=indent,eol,start
set foldmethod=marker
set history=50
set hlsearch
set ignorecase
set incsearch
set laststatus=2
set nobackup
set nomodeline
set ruler
set showcmd
set smartcase
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
set wildmenu
2016-12-07 14:24:18 +02:00
" scroll before reaching the first / final line
set scrolloff=3
set sidescrolloff=15
set sidescroll=1
2014-11-12 18:33:26 +02:00
" disable bell
set noerrorbells visualbell t_vb=
2016-09-09 13:45:34 +03:00
" indentation_RIP
"set shiftwidth=3 tabstop=3 noexpandtab
" indentation_OK
set tabstop=3 softtabstop=4 shiftwidth=4 smarttab expandtab
2016-09-09 13:45:34 +03:00
2016-08-31 19:21:42 +03:00
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
" termcap fixes
set t_Co=256
set t_ut=
2016-12-06 01:20:19 +02:00
set termencoding=utf-8
set encoding=utf-8
2016-12-06 18:28:09 +02:00
set fillchars+=vert:│
2014-11-12 18:33:26 +02:00
" maps
2016-12-07 14:24:18 +02:00
map <Space> <leader>
noremap <F1> <Esc>
2015-06-19 13:23:02 +03:00
"enable cursorline on demand
nnoremap <Leader>c :set cursorline!<CR>
"clear search highlight
nnoremap <Leader>/ :nohls<CR>
"make wrapped lines navigation easier
2016-05-19 17:05:20 +03:00
noremap <silent> <expr> j (v:count == 0 ? 'gj' : 'j')
noremap <silent> <expr> k (v:count == 0 ? 'gk' : 'k')
"home / end
nnoremap H ^
nnoremap L $
2016-12-07 14:24:18 +02:00
"copy to / paste from clipboard
vmap <Leader>y "+y
vmap <Leader>d "+d
nmap <Leader>p "+p
nmap <Leader>P "+P
vmap <Leader>p "+p
vmap <Leader>P "+P
"move macro somewhere I won't accidentally use it
nnoremap Q q
nnoremap q <Nop>
"quit / save
nmap qq :q<CR>
nmap qf :q!<CR>
nmap qa :qa<CR>
nmap qw :wq<CR>
nmap <Leader>w :w<CR>
" still have to deal with old vim versions :<
2016-12-12 19:35:00 +02:00
if v:version >= 703
set colorcolumn=80
set relativenumber
nnoremap <Leader>r :setlocal relativenumber!<CR>
endif
if v:version >= 800
set breakindent
endif
2016-09-12 13:05:31 +03:00
2016-12-12 19:35:00 +02:00
set mouse=
2016-09-12 13:05:31 +03:00
2016-12-12 19:35:00 +02:00
set helplang=en
set list
set number
set listchars=tab:\|_,nbsp:x,trail:*
nnoremap <Leader>n :setlocal number!<CR>
nnoremap <Leader>l :setlocal list!<CR>
2016-09-12 13:05:31 +03:00
2016-12-12 19:35:00 +02:00
" enable case indentation
let g:sh_indent_case_labels=1
2016-09-12 13:05:31 +03:00
2016-12-12 19:35:00 +02:00
" plugins
if filereadable(expand("$HOME/vdotfiles/plugins.vim"))
source ~/vdotfiles/plugins.vim
endif
2016-12-12 19:35:00 +02:00
colorscheme solarized8_light
syntax on
2015-03-10 01:14:57 +02:00
filetype plugin on