set nocompatible " be iMproved, required filetype off " required " Section Plugins {{{ " Load vim-plug if empty(glob("~/.config/nvim/autoload/plug.vim")) execute '!curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' endif call plug#begin() Plug 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required Plug 'tpope/vim-fugitive' " Git integration Plug 'tpope/vim-sensible' " Defaults everyone can agree on Plug 'tpope/vim-surround' " better handling of surrounding markers Plug 'tpope/vim-ragtag' " Enhancement of surround for html Plug 'tpope/vim-repeat' " repeat last command with . Plug 'tpope/vim-dadbod' " Modern database interface for Vim Plug 'tpope/vim-dispatch' " Needed for dadbod Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " file tree Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' } Plug 'scrooloose/nerdcommenter' " better commenting Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " completion engine Plug 'Shougo/neosnippet.vim' " snippet engine Plug 'Shougo/neosnippet-snippets' " snippets Plug 'easymotion/vim-easymotion' " better motion with leader Plug 'bling/vim-airline' " statusline Plug 'w0rp/ale' " asynchronous linting engine Plug 'godlygeek/tabular' " Align text on symbols Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " fuzzy file finder Plug 'junegunn/fzf.vim' " vim integration for fzf Plug 'airblade/vim-gitgutter' " git status in gutter column Plug 'radenling/vim-dispatch-neovim' " support for :Start command, needed in dadbod " html / templates{{{ Plug 'mattn/emmet-vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " emmet support for vim - easily create markdup wth CSS-like syntax Plug 'gregsexton/MatchTag', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " match tags in html, similar to paren support Plug 'othree/html5.vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " html5 support "}}} " JavaScript{{{ Plug 'gavocanov/vim-js-indent', { 'for': [ 'javascript' ]} " JavaScript indent support Plug 'moll/vim-node', { 'for': [ 'javascript', 'vue' ]} " node support "Plug 'othree/yajs.vim', { 'for': [ 'javascript', 'vue' ]} " JavaScript syntax plugin "Plug 'othree/es.next.syntax.vim', { 'for': [ 'javascript', 'vue' ]} " ES6 and beyond syntax Plug 'https://github.com/othree/jspc.vim', { 'for': [ 'javascript', 'vue' ]} " Function parameter completion Plug 'heavenshell/vim-jsdoc', { 'for': [ 'javascript', 'vue' ]} " Generate JSDoc comments Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integration Plug 'carlitux/deoplete-ternjs', { 'for': [ 'javascript', 'vue', 'html' ], 'do': 'npm install -g tern' } " deoplete completion via ternjs "}}} " Go {{{ Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ], 'do': ':GoInstallBinaries' } " go support Plug 'zchee/deoplete-go', { 'for': 'go' } "}}} " LaTeX{{{ Plug 'lervag/vimtex', { 'for': 'tex' } "}}} " Markdown{{{ Plug 'suan/vim-instant-markdown', { 'for': 'markdown' } Plug 'tpope/vim-markdown', { 'for': 'markdown'} "}}} " Colorschemes{{{ Plug 'altercation/vim-colors-solarized' "}}} " TOML{{{ Plug 'cespare/vim-toml', { 'for': 'toml' } "}}} " Haskell{{{ Plug 'bitc/vim-hdevtools', { 'for': 'haskell' } Plug 'nbouscal/vim-stylish-haskell', { 'for': 'haskell' } "}}} " C/C++{{{ Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' } let g:clang_library_path='/usr/lib/llvm-6.0/lib/libclang-6.0.so.1' Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] } "}}} " PHP{{{ "Plug 'shawncplus/phpcomplete.vim', { 'for': 'php', 'do': 'curl -Ss http://vim-php.com/phpctags/install/phpctags.phar > ~/bin/phpctags && chmod +x ~/bin/phpctags' } Plug 'lvht/phpcd.vim', { 'for': 'php', 'do': 'composer install' } Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' } Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates "}}} " Python{{{ Plug 'davidhalter/jedi-vim', { 'for': 'python', 'do': 'pip install jedi' } Plug 'zchee/deoplete-jedi', { 'for': 'python' } "}}} " Java{{{ Plug 'artur-shaik/vim-javacomplete2', { 'for': 'java' } "}}} " MIPS{{{ Plug 'vim-scripts/mips.vim' "}}} " All of your Plugins must be added before the following line call plug#end() " required filetype plugin indent on " required " }}} " THEME{{{ colorscheme solarized set background=dark " Use light theme if whole shell is in light mode let themeenv=$THEME_SWITCHER if themeenv=='light' set background=light endif " }}} " SETTINGS{{{ set number " line numbers set autoread " reload file automatically set colorcolumn=80 " highlight column 80 set history=1000 set wildignore+=node_modules " ignore node_modules folder from file search " make comments and HTML attributes italic highlight Comment cterm=italic highlight htmlArg cterm=italic set autoindent " automatically set indent of new line set smartindent set tabstop=4 set shiftwidth=4 set expandtab " toggle invisible characters set list set listchars=tab:→\ ,eol:¬,trail:⋅,extends:❯,precedes:❮ set showbreak=↪ set ttyfast " faster redrawing set diffopt+=vertical set laststatus=2 " show the satus line all the time set so=7 " set 7 lines to the cursors - when moving vertical set wildmenu " enhanced command line completion set hidden " current buffer can be put into background set showcmd " show incomplete commands " set noshowmode " don't show which mode disabled for PowerLine set wildmode=list:longest " complete files like a shell set scrolloff=3 " lines of text around cursor set shell=$SHELL set cmdheight=1 " command bar height set title " set terminal title set foldmethod=marker" " folds are marked with {{{}}} " Uncomment the following to have Vim jump to the last position when " reopening a file if has("autocmd") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") \| exe "normal! g'\"" | endif endif " Setting for correct mips syntax highlighting au BufReadPost *.mips set syntax=mips " }}} " MAPPINGS{{{ let mapleader = "," " CtrlP for Tags nnoremap :CtrlPTag " fzf bindings nmap :Files nmap :Tags " Toggle NERDTree nmap k :NERDTreeToggle " expand to the path of the file in the current buffer nmap y :NERDTreeFind " Allow saving of files as sudo when I forgot to start vim using sudo. cmap w!! w !sudo tee > /dev/null % "Toggle set paste nmap tp :set paste! " scroll the viewport faster nnoremap 3 nnoremap 3 " ctrl-r in visual mode to replace selected text vnoremap "hy:%s/h//g nmap an :ALENext "}}} " P L U G I N S{{{ let NERDTreeShowHidden=1 let g:airline_powerline_fonts = 1 " ALE {{{ let g:airline#extensions#ale#enabled = 1 "}}} let vim_tags_ctags_binary='~/bin/phpctags'" " Java config autocmd FileType java setlocal omnifunc=javacomplete#Complete " Python-mode config let g:pymode_lint_on_write = 0 " Vimtex{{{ if !exists('g:neocomplete#sources#omni#input_patterns') let g:neocomplete#sources#omni#input_patterns = {} endif let g:neocomplete#sources#omni#input_patterns.tex = \ '\v\\%(' \ . '\a*%(ref|cite)\a*%(\s*\[[^]]*\])?\s*\{[^{}]*' \ . '|includegraphics%(\s*\[[^]]*\])?\s*\{[^{}]*' \ . '|%(include|input)\s*\{[^{}]*' \ . ')' "}}} " C/C++ autocmd FileType c,cpp,objc nnoremap f :ClangFormat autocmd FileType c,cpp,objc vnoremap f :ClangFormat "}}} " Completion {{{ " Use deoplete. let g:deoplete#enable_at_startup = 1 " Use TAB to cycle between matches inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\" let g:deoplete#ignore_sources = get(g:, 'deoplete#ignore_sources', {}) let g:deoplete#ignore_sources.php = ['omni'] " Neosnippet Settings imap (neosnippet_expand_or_jump) smap (neosnippet_expand_or_jump) xmap (neosnippet_expand_target) " SuperTab like snippets behavior. "imap " \ pumvisible() ? "\" : " \ neosnippet#expandable_or_jumpable() ? " \ "\(neosnippet_expand_or_jump)" : "\" smap neosnippet#expandable_or_jumpable() ? \ "\(neosnippet_expand_or_jump)" : "\" " For conceal markers. if has('conceal') set conceallevel=2 concealcursor=niv endif let g:neosnippet#snippets_directory = '~/.dotfiles/vim/neosnippets' "}}}