dotfiles/vim/.vimrc

77 lines
1.5 KiB
VimL
Raw Normal View History

" Plugin Manager
source ~/.vim/config/plugins.vim
" Make sure plug.vim is present
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
source ~/.vim/autoload/plug.vim
autocmd VimEnter * PlugInstall --sync
endif
" Prepare central backup/swap/undo directory
let &undodir = expand('~/.vim/.undo//')
let &backupdir = expand('~/.vim/.backup//')
let &directory = expand('~/.vim/.swp//')
2018-04-05 13:06:54 +02:00
syntax on
filetype plugin on
filetype plugin indent on
set encoding=utf-8
2018-04-05 13:06:54 +02:00
" Use whitespace instead of tab
set expandtab
2018-04-05 13:06:54 +02:00
" Make a tabulator equal 4 spaces
2018-04-05 13:06:54 +02:00
set tabstop=4
set shiftwidth=4
" Enable persistent undo
set undofile
" Use relative line numbers
set number
set relativenumber
" Set linelength indicator to 120 characters
2018-04-05 13:06:54 +02:00
set cc=120
" Natural window splitting
2018-08-28 23:24:09 +02:00
set splitbelow
set splitright
" Set colors
colorscheme happy_hacking
" Turn on the Wild menu
set wildmenu
" Ignore compiled files
set wildignore=*.o,*~,*.pyc
if has("win16") || has("win32")
set wildignore+=.git\*,.hg\*,.svn\*
else
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
endif
" No annoying sound on errors
set noerrorbells
set novisualbell
set t_vb=
set tm=500
2019-11-17 20:47:04 +01:00
let mapleader=","
2018-08-28 23:24:09 +02:00
" Apply plugin configurations
source ~/.vim/config/pluginconfig.vim
" Apply custom keybindings
source ~/.vim/config/keybindings.vim
" Apply settings for custom filetypes
source ~/.vim/config/filetypes.vim
2018-04-05 13:06:54 +02:00
" Transparency
hi Normal guibg=NONE ctermbg=NONE