X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/0e40ccc49e9680d208724dc4da2eaa8ede5d4fa6..3cfb240230ff88aa9a222a12926bd475d4e9eebf:/vimrc diff --git a/vimrc b/vimrc index affae76..3069553 100755 --- a/vimrc +++ b/vimrc @@ -63,7 +63,6 @@ au BufNewFile,BufRead *.asm,*.s set filetype=snes" " load the plugin and indent settings for the detected filetype filetype plugin indent on filetype plugin on -set omnifunc=syntaxcomplete#Complete " Directories for swp files set backupdir=~/.vim/.backup @@ -102,8 +101,27 @@ set rtp+=/usr/local/opt/fzf " Inserts the path of the currently edited file into a command noremap :FZF +let g:fzf_layout = { 'down': '40%' } + +" Auto Pairs +let g:AutoPairsMultilineClose = 0 + " ALE config -let g:ale_linters = {'javascript': ['eslint']} +let g:ale_linter_aliases = {'svelte': ['css', 'javascript']} +let g:ale_linters = { + \'javascript': ['eslint'], + \'svelte': ['stylelint', 'eslint'] + \} +let g:ale_fixers = { + \'javascript': ['eslint'], + \'svelte': ['eslint'] + \} +let g:ale_fix_on_save = 1 + +" Deoplete config +let g:deoplete#enable_at_startup = 1 +inoremap pumvisible() ? "\" : "\" +inoremap pumvisible() ? "\" : "\" " " A E S T H E T I C S @@ -174,7 +192,7 @@ vnoremap :m '<-2gv=gv call plug#begin('~/.vim/plugged') " Syntaxes -Plug 'rbdr/api-notation.vim' +Plug 'https://gitlab.com/rbdr/api-notation.vim.git' Plug 'elzr/vim-json' Plug 'mustache/vim-mode' Plug 'othree/yajs.vim' @@ -183,6 +201,7 @@ Plug 'posva/vim-vue' Plug 'leafOfTree/vim-svelte-plugin' Plug 'bumaociyuan/vim-swift' Plug 'udalov/kotlin-vim' +Plug 'tikhomirov/vim-glsl' " Editing Plug 'jiangmiao/auto-pairs' @@ -192,11 +211,19 @@ Plug 'michaeljsmith/vim-indent-object' " Tools Plug 'editorconfig/editorconfig-vim' Plug 'dense-analysis/ale' +if has('nvim') + Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } +else + Plug 'Shougo/deoplete.nvim' + Plug 'roxma/nvim-yarp' + Plug 'roxma/vim-hug-neovim-rpc' +endif Plug 'vim-scripts/LargeFile' Plug 'tpope/vim-fugitive' Plug 'milkypostman/vim-togglelist' Plug 'jremmen/vim-ripgrep' -Plug 'lifepillar/vim-mucomplete' + +Plug 'jparise/vim-graphql' " List ends here. Plugins become visible to Vim after this call. call plug#end()