" various settings set nobackup nomodeline backspace=indent,eol,start foldmethod=marker cursorline mouse= " hidden characters set list listchars=tab:\|_,nbsp:x,trail:* " search set hlsearch incsearch ignorecase smartcase " scroll before reaching the first / final line set scrolloff=3 sidescrolloff=15 sidescroll=1 " disable bell set noerrorbells visualbell t_vb= " indentation set tabstop=3 softtabstop=4 shiftwidth=4 smarttab expandtab " termcap fixes set t_Co=256 t_ut= termencoding=utf-8 encoding=utf-8 " status line and title set wildmenu showcmd ruler laststatus=2 set statusline=[%F]\ %R%H%W%M\ %=[%{&fenc}/%{&ff}]\ %y\ [%4l/%L:%3v] set title titlestring=[%{hostname()}]\ %t\ -\ vim " enable case indentation let g:sh_indent_case_labels=1 " version specific settings if v:version >= 703 set colorcolumn=80 relativenumber formatoptions+=j endif " maps "leader map let mapleader="\" "no more F1 noremap xnoremap snoremap inoremap lnoremap cnoremap "some toggles nnoremap l :setlocal list! nnoremap c :setlocal cursorline! nnoremap w :setlocal wrap! "turn off highlight until next search nnoremap / :noh "copy to / paste from clipboard vmap y "+y vmap d "+d nmap p "+p nmap P "+P vmap p "+p vmap P "+P "move macro somewhere I won't accidentally use it noremap q "quit / save nnoremap q :q nnoremap s :w if $TERM =~ '^\(screen\|tmux\)' set t_ts=k set t_fs=\ endif if v:version >= 800 set breakindent " easy-align options xmap a (EasyAlign) nmap a (EasyAlign) " only plug vimwiki within vimwiki dir and this file if expand('%:p:h') =~ 'vimwiki' packadd vimwiki endif autocmd FileType python packadd jedi-vim | packadd ale autocmd FileType sh packadd ale " yaaay themes if $TERM =~ '^\(rxvt\|st\|tmux\|xterm\)' let &t_8f = "\033[38;2;%lu;%lu;%lum" let &t_8b = "\033[48;2;%lu;%lu;%lum" set termguicolors endif set bg=dark colorscheme gruvbox8 endif syntax on filetype plugin on