dotfiles/vim/vimrc

63 lines
1.7 KiB
VimL
Raw Normal View History

2020-12-06 02:29:15 +01:00
" Install all plugins
source $DOTFILES/vim/plugs.vim
" Sanity
set encoding=utf-8
scriptencoding utf-8
" Style
set background=dark
colorscheme gruvbox
" General stuff
set nowrap
set mouse=a
set relativenumber number
2021-01-09 23:54:20 +01:00
set foldlevelstart=3 foldmethod=indent foldenable "without nofoldenable all folds are closed at startup"
2020-12-06 02:29:15 +01:00
set ttymouse=xterm2 " fix mouse when used in tmux/byobu https://unix.stackexchange.com/q/50733
2020-12-07 15:37:55 +01:00
set nobackup nowb noswapfile " no need for backups of every file
2020-12-06 02:29:15 +01:00
set history=10000
set list listchars=tab:\ ,trail:•,extends:#,nbsp:.
set splitbelow splitright
set autoread
" Don't redraw while executing macros (good performance config)
set lazyredraw
set ignorecase smartcase " ignore case on search but be smart about it
set hlsearch "highlight search results (using *)
2020-12-09 01:54:42 +01:00
set expandtab shiftwidth=4 tabstop=4 "always use spaces
2020-12-06 02:29:15 +01:00
autocmd FileType yaml,yml setlocal shiftwidth=2 softtabstop=2 expandtab
2021-01-07 11:08:00 +01:00
autocmd FileType vue setlocal shiftwidth=2 softtabstop=2 expandtab
2021-02-19 08:52:16 +01:00
autocmd FileType go setlocal noexpandtab
2020-12-06 23:20:21 +01:00
au BufRead,BufNewFile */playbooks/*.yml set filetype=yaml.ansible
au BufRead,BufNewFile rules.v[46] *.rules setlocal filetype=iptables
2020-12-06 23:20:21 +01:00
2020-12-09 01:54:42 +01:00
if has('persistent_undo')
set undodir=$HOME/.vim/undo
set undofile
endif
2020-12-06 02:29:15 +01:00
" Return to last edit position when opening files (from amix's vimrc)
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
" Remap VIM 0 to first non-blank character
" map 0 ^
" Bash like keys for the command line
cnoremap <C-A> <Home>
cnoremap <C-E> <End>
cnoremap <C-K> <C-U>
cnoremap <C-P> <Up>
cnoremap <C-N> <Down>
source $DOTFILES/vim/plugins_config.vim
source $DOTFILES/vim/shortcuts.vim
source $DOTFILES/vim/functions.vim