X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/e7572a53051b96e0d428111831c7abc5d24cb468..3293278c416a2412cf87bffb3a78ef1a145e1a9d:/vimrc diff --git a/vimrc b/vimrc index d1f7c9f..26baa1b 100755 --- a/vimrc +++ b/vimrc @@ -111,8 +111,8 @@ set modeline set modelines=10 " Default color scheme -set t_Co=256 -color molokai +set termguicolors +color rbdr " Directories for swp files set backupdir=~/.vim/.backup @@ -142,9 +142,6 @@ let g:tagbar_ctags_bin="/usr/local/bin/ctags" " Color Column let &colorcolumn="80,150" -" Add Pathogen -call pathogen#infect() - " Folding Settings set foldmethod=syntax set foldnestmax=10 @@ -196,3 +193,49 @@ let g:fzf_colors = \ 'marker': ['fg', 'Keyword'], \ 'spinner': ['fg', 'Label'], \ 'header': ['fg', 'Comment'] } + +" ALE config +let g:ale_linters = {'javascript': ['eslint']} + +" Move things up and down using Ctrl + Shift +nnoremap :m .+1== +nnoremap :m .-2== +inoremap :m .+1==gi +inoremap :m .-2==gi +vnoremap :m '>+1gv=gv +vnoremap :m '<-2gv=gv + +" Plug configuration +call plug#begin('~/.vim/plugged') + +" +" Plugin List +" + +" Syntaxes +Plug 'rbdr/api-notation.vim' +Plug 'elzr/vim-json' +Plug 'mustache/vim-mode' +Plug 'othree/yajs.vim' +Plug 'ARM9/snes-syntax-vim' +Plug 'posva/vim-vue' +Plug 'leafOfTree/vim-svelte-plugin' +Plug 'bumaociyuan/vim-swift' +Plug 'udalov/kotlin-vim' + +" Editing +Plug 'jiangmiao/auto-pairs' +" Plug 'tpope/vim-endwise.git' +Plug 'michaeljsmith/vim-indent-object' + +" Tools +Plug 'editorconfig/editorconfig-vim' +Plug 'w0rp/ale' +Plug 'vim-scripts/LargeFile' +Plug 'tpope/vim-fugitive' +Plug 'milkypostman/vim-togglelist' +Plug 'jremmen/vim-ripgrep' +Plug 'lifepillar/vim-mucomplete' + +" List ends here. Plugins become visible to Vim after this call. +call plug#end()