2016-12-13 14:17:17 +02:00
|
|
|
" various settings
|
2017-02-27 12:21:47 +02:00
|
|
|
set nobackup number nomodeline cursorline backspace=indent,eol,start
|
2017-03-06 11:10:51 +02:00
|
|
|
set foldmethod=marker ttymouse=xterm2 mouse=
|
2016-12-13 14:17:17 +02:00
|
|
|
" hidden characters
|
|
|
|
set list listchars=tab:\|_,nbsp:x,trail:*
|
|
|
|
" search
|
2016-12-20 11:11:42 +02:00
|
|
|
set hlsearch incsearch ignorecase smartcase
|
2016-12-07 14:24:18 +02:00
|
|
|
" scroll before reaching the first / final line
|
2016-12-13 14:17:17 +02:00
|
|
|
set scrolloff=3 sidescrolloff=15 sidescroll=1
|
2014-11-12 18:33:26 +02:00
|
|
|
" disable bell
|
2014-10-30 15:46:46 +02:00
|
|
|
set noerrorbells visualbell t_vb=
|
2016-12-13 14:17:17 +02:00
|
|
|
" indentation
|
2016-09-30 14:39:57 +03:00
|
|
|
set tabstop=3 softtabstop=4 shiftwidth=4 smarttab expandtab
|
2016-12-09 18:18:17 +02:00
|
|
|
" termcap fixes
|
2017-06-20 13:28:12 +03:00
|
|
|
set t_ut= termencoding=utf-8 encoding=utf-8
|
2017-02-17 10:40:37 +02:00
|
|
|
" status line
|
|
|
|
set wildmenu showcmd ruler laststatus=2
|
2017-02-22 19:11:36 +02:00
|
|
|
set statusline=[%F]\ %R%H%W%M\ %=[%{&fenc}/%{&ff}]\ %y\ [%4l/%L:%3v]
|
2016-12-13 14:17:17 +02:00
|
|
|
" enable case indentation
|
|
|
|
let g:sh_indent_case_labels=1
|
|
|
|
" version specific settings
|
2017-02-27 12:21:47 +02:00
|
|
|
if v:version >= 703
|
2017-03-06 11:10:51 +02:00
|
|
|
set colorcolumn=80 relativenumber formatoptions+=j
|
2017-02-27 12:21:47 +02:00
|
|
|
endif
|
|
|
|
if v:version >= 800
|
2017-03-06 11:10:51 +02:00
|
|
|
set breakindent keymap=russian-jcukenwintype iminsert=0 imsearch=0
|
2017-02-06 19:09:50 +02:00
|
|
|
inoremap <C-@> <C-^>
|
2017-02-16 18:15:30 +02:00
|
|
|
cnoremap <C-@> <C-^>
|
|
|
|
inoremap <C-Space> <C-^>
|
|
|
|
cnoremap <C-Space> <C-^>
|
2016-12-13 14:17:17 +02:00
|
|
|
endif
|
2014-11-24 12:21:42 +02:00
|
|
|
|
2014-11-12 18:33:26 +02:00
|
|
|
" maps
|
2017-03-06 10:47:51 +02:00
|
|
|
"leader
|
2017-02-16 18:15:30 +02:00
|
|
|
map <Space> <NOP>
|
|
|
|
let mapleader="\<Space>"
|
2017-03-06 10:47:51 +02:00
|
|
|
"no more F1
|
2015-02-06 23:23:05 +02:00
|
|
|
noremap <F1> <Esc>
|
2017-02-23 15:15:05 +02:00
|
|
|
xnoremap <F1> <Esc>
|
|
|
|
snoremap <F1> <Esc>
|
|
|
|
inoremap <F1> <Esc>
|
|
|
|
lnoremap <F1> <Esc>
|
|
|
|
cnoremap <F1> <Esc>
|
2017-03-06 10:47:51 +02:00
|
|
|
"some toggles
|
2016-12-13 14:17:17 +02:00
|
|
|
nnoremap <Leader>n :setlocal number!<CR>
|
2017-02-25 14:50:20 +02:00
|
|
|
nnoremap <Leader>r :setlocal relativenumber!<CR>
|
2016-12-13 14:17:17 +02:00
|
|
|
nnoremap <Leader>l :setlocal list!<CR>
|
|
|
|
nnoremap <Leader>c :setlocal cursorline!<CR>
|
2017-04-10 12:28:25 +03:00
|
|
|
nnoremap <Leader>v :setlocal wrap!<CR>
|
2017-05-05 14:58:36 +03:00
|
|
|
"turn off highlight until next search
|
|
|
|
nnoremap <Leader>/ :noh<CR>
|
2015-02-06 23:23:05 +02:00
|
|
|
"home / end
|
2017-03-06 10:47:51 +02:00
|
|
|
noremap H ^
|
|
|
|
noremap 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
|
2016-12-09 18:18:17 +02:00
|
|
|
"move macro somewhere I won't accidentally use it
|
2017-03-02 18:24:43 +02:00
|
|
|
noremap Q q
|
2017-04-18 21:57:23 +03:00
|
|
|
noremap q <NOP>
|
2016-12-09 18:18:17 +02:00
|
|
|
"quit / save
|
2016-12-13 14:17:17 +02:00
|
|
|
nnoremap qq :q<CR>
|
|
|
|
nnoremap qf :q!<CR>
|
|
|
|
nnoremap qa :qa<CR>
|
2017-03-02 11:23:04 +02:00
|
|
|
nnoremap qs :wq<CR>
|
|
|
|
nnoremap <Leader>s :w<CR>
|
2016-09-12 13:05:31 +03:00
|
|
|
|
2017-03-06 11:10:51 +02:00
|
|
|
" mouse toggle
|
|
|
|
fun! s:ToggleMouse()
|
|
|
|
if !exists("s:old_mouse")
|
|
|
|
let s:old_mouse = "a"
|
|
|
|
endif
|
|
|
|
|
|
|
|
if &mouse == ""
|
|
|
|
let &mouse = s:old_mouse
|
|
|
|
echo "mouse enabled (" . &mouse . ")"
|
|
|
|
else
|
|
|
|
let s:old_mouse = &mouse
|
|
|
|
let &mouse=""
|
|
|
|
echo "mouse disabled"
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
noremap <Leader>m :call <SID>ToggleMouse()<CR>
|
|
|
|
|
2016-12-12 19:35:00 +02:00
|
|
|
" plugins
|
2016-12-21 13:18:30 +02:00
|
|
|
let plugins = expand("$HOME/.vimplugins")
|
2017-02-27 12:21:47 +02:00
|
|
|
if filereadable(plugins) && v:version >= 703
|
2016-12-13 18:06:28 +02:00
|
|
|
execute 'source ' . fnameescape(plugins)
|
2014-10-15 00:54:19 +03:00
|
|
|
endif
|
|
|
|
|
2017-05-31 10:33:32 +03:00
|
|
|
colorscheme solarized8_light
|
2015-06-30 20:01:13 +03:00
|
|
|
syntax on
|
2015-08-22 03:30:22 +03:00
|
|
|
filetype plugin on
|