1
0
Fork 0
vdotfiles/vimrc

86 lines
2.2 KiB
VimL
Raw Normal View History

" various settings
2018-06-21 11:56:52 +03:00
set nobackup nomodeline backspace=indent,eol,start foldmethod=marker cursorline mouse=
" 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
set scrolloff=3 sidescrolloff=15 sidescroll=1
2014-11-12 18:33:26 +02:00
" disable bell
set noerrorbells visualbell t_vb=
" indentation
2018-06-29 17:04:26 +03:00
set tabstop=3 softtabstop=4 shiftwidth=4 smarttab expandtab autoindent
" termcap fixes
set t_Co=256 t_ut= termencoding=utf-8 encoding=utf-8
2018-06-29 17:04:26 +03: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]
2018-06-29 17:04:26 +03:00
" update window title
if !exists('g:tvim')
if $TERM =~ '^screen'
set t_ts=k
set t_fs=\
endif
set title titlestring=[%{hostname()}]\ %t\ -\ vim
2018-06-29 17:04:26 +03:00
endif
" enable case indentation
let g:sh_indent_case_labels=1
" version specific settings
if v:version >= 703
2018-06-21 11:56:52 +03:00
set colorcolumn=80 relativenumber formatoptions+=j
endif
2014-11-12 18:33:26 +02:00
" maps
"leader
2017-02-16 18:15:30 +02:00
map <Space> <NOP>
let mapleader="\<Space>"
"no more F1
noremap <F1> <Esc>
lnoremap <F1> <Esc>
"some toggles
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>
"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
"move macro somewhere I won't accidentally use it
noremap q <NOP>
"quit / save
2017-11-23 01:36:11 +02:00
nnoremap <Leader>q :q<CR>
nnoremap <Leader>s :w<CR>
2016-09-12 13:05:31 +03:00
if v:version >= 800
2018-06-22 20:05:04 +03:00
set breakindent
" easy-align options
xmap <Leader>a <Plug>(EasyAlign)
nmap <Leader>a <Plug>(EasyAlign)
2018-07-06 15:47:53 +03:00
" signify options
let g:signify_vcs_list = [ 'git' ]
let g:signify_sign_change = '~'
2018-06-29 17:04:26 +03:00
" enable packs based on filetype
let g:ale_python_flake8_executable = 'python2'
2018-07-04 19:25:37 +03:00
autocmd FileType python packadd ale | packadd jedi-vim
2018-06-28 19:24:31 +03:00
autocmd FileType sh packadd ale
2018-06-22 20:05:04 +03:00
if exists('g:tvim') || has('gui_running')
colorscheme jellybeans
elseif $TERM != 'linux'
let g:solarized_extra_hi_groups = 1
let g:solarized_use16 = 1
colorscheme solarized8
endif
endif
syntax on
filetype plugin on