2016-12-13 14:17:17 +02:00
|
|
|
" various settings
|
2018-06-21 11:56:52 +03:00
|
|
|
set nobackup nomodeline backspace=indent,eol,start foldmethod=marker cursorline 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-21 17:51:29 +03:00
|
|
|
set t_Co=256 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
|
2018-06-21 11:56:52 +03:00
|
|
|
set colorcolumn=80 relativenumber formatoptions+=j
|
2017-02-27 12:21:47 +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>l :setlocal list!<CR>
|
|
|
|
nnoremap <Leader>c :setlocal cursorline!<CR>
|
2017-11-23 01:36:11 +02:00
|
|
|
nnoremap <Leader>w :setlocal wrap!<CR>
|
2017-05-05 14:58:36 +03:00
|
|
|
"turn off highlight until next search
|
|
|
|
nnoremap <Leader>/ :noh<CR>
|
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-04-18 21:57:23 +03:00
|
|
|
noremap q <NOP>
|
2016-12-09 18:18:17 +02:00
|
|
|
"quit / save
|
2017-11-23 01:36:11 +02:00
|
|
|
nnoremap <Leader>q :q<CR>
|
2017-03-02 11:23:04 +02:00
|
|
|
nnoremap <Leader>s :w<CR>
|
2016-09-12 13:05:31 +03:00
|
|
|
|
2018-06-23 13:36:29 +03:00
|
|
|
if v:version >= 800
|
2018-06-22 20:05:04 +03:00
|
|
|
set breakindent
|
|
|
|
|
|
|
|
" signify options
|
|
|
|
let g:signify_vcs_list = [ 'git' ]
|
|
|
|
let g:signify_sign_change = '~'
|
|
|
|
|
|
|
|
" easy-align options
|
|
|
|
xmap <Leader>a <Plug>(EasyAlign)
|
|
|
|
nmap <Leader>a <Plug>(EasyAlign)
|
|
|
|
|
|
|
|
" only plug vimwiki within vimwiki dir and this file
|
2018-06-23 13:36:29 +03:00
|
|
|
if expand('%:p:h') =~ 'vimwiki'
|
2018-06-22 20:05:04 +03:00
|
|
|
packadd vimwiki
|
2017-03-06 11:10:51 +02:00
|
|
|
endif
|
2018-06-25 15:13:09 +03:00
|
|
|
autocmd FileType python packadd jedi-vim | packadd ale
|
2018-06-22 20:05:04 +03:00
|
|
|
|
|
|
|
" yaaay themes
|
2018-06-25 19:24:36 +03:00
|
|
|
if has('gui_running') || $TERM =~ '^\(rxvt\|st\|tmux\|xterm\)'
|
2018-06-22 20:05:04 +03:00
|
|
|
let &t_8f = "\033[38;2;%lu;%lu;%lum"
|
|
|
|
let &t_8b = "\033[48;2;%lu;%lu;%lum"
|
2018-06-24 01:15:13 +03:00
|
|
|
set termguicolors
|
|
|
|
colorscheme iceberg
|
2017-03-06 11:10:51 +02:00
|
|
|
else
|
2018-06-25 19:24:36 +03:00
|
|
|
colorscheme apprentice
|
2017-03-06 11:10:51 +02:00
|
|
|
endif
|
2014-10-15 00:54:19 +03:00
|
|
|
endif
|
|
|
|
|
2018-06-23 13:36:29 +03:00
|
|
|
if has('gui_running')
|
|
|
|
if has('win32')
|
|
|
|
set guifont=Fantasque_Sans_Mono:h11
|
|
|
|
else
|
|
|
|
set guifont=Fantasque\ Sans\ Mono\ 11
|
|
|
|
endif
|
|
|
|
set guicursor=a:blinkon0,a:block,i:ver1-Cursor/lCursor,r:hor1-Cursor/lCursor
|
|
|
|
set guiheadroom=0 guioptions=aei mouse=a noerrorbells visualbell t_vb=
|
|
|
|
map <S-Insert> <MiddleMouse>
|
|
|
|
map! <S-Insert> <MiddleMouse>
|
|
|
|
endif
|
|
|
|
|
2015-06-30 20:01:13 +03:00
|
|
|
syntax on
|
2015-08-22 03:30:22 +03:00
|
|
|
filetype plugin on
|