set nocompatible " Plugins -------------------------------------------------------------------{{{ " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' " Plugin 'ycm-core/YouCompleteMe' Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-surround' Plugin 'tpope/vim-rails' Plugin 'tpope/vim-repeat' Plugin 'slim-template/vim-slim' Plugin 'kchmck/vim-coffee-script' Plugin 'fatih/vim-go' Plugin 'fatih/vim-hclfmt' Plugin 'nanotech/jellybeans.vim' Plugin 'ervandew/supertab' Plugin 'scrooloose/nerdcommenter' Plugin 'scrooloose/nerdtree' Plugin 'Align' Plugin 'tomtom/tlib_vim' " dependency of flashdevelop Plugin 'endel/flashdevelop.vim' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'itchyny/lightline.vim' Plugin 'heavenshell/vim-jsdoc' Plugin 'hashivim/vim-terraform' Plugin 'b4b4r07/vim-hcl' Plugin 'Glench/Vim-Jinja2-Syntax' Plugin 'calviken/vim-gdscript3' " Past plugins " " Seems to break NERDTree. I dunno why. Kinda problematic since it's " intended to improve NERDTree. " Plugin 'Xuyuanp/nerdtree-git-plugin' " " I just don't like it any more " Plugin 'airblade/vim-gitgutter' " " Still figuring this one out. I think I hate it? " Plugin 'neoclide/coc.nvim' call vundle#end() " required " enable the filetype plugin filetype plugin indent on " ---------------------------------------------------------------------------}}} " Character Encoding --------------------------------------------------------{{{ " sets the character encoding used inside of vim itself. does not change how " files are written to disk. set encoding=utf-8 if has("multi_byte") " termencoding specifies what character encoding the keyboard produces and " the display will understand if &termencoding == "" let &termencoding = &encoding endif endif " ---------------------------------------------------------------------------}}} " Whitespace ----------------------------------------------------------------{{{ " allow backspacing over line breaks set backspace=indent,eol,start " copy indent from current line when starting a new line set autoindent " automatically add an indent after block-opening symbols like { set smartindent " display tab as 4 characters wide instead of 8 set tabstop=4 " use 4 spaces when creating a new indentation level with autoindentation set shiftwidth=4 " tab key inserts spaces set expandtab " no matter how many times I read the help text on this I still don't " understand what it does, but I've had it in here for years so I'm just " leaving it. set smarttab " set whitespace characters if has("multi_byte") set listchars=tab:▸\ ,trail:·,precedes:←,extends:→ let &showbreak='↪ ' else set listchars=tab:>-,trail:.,precedes:#,extends:# endif " ---------------------------------------------------------------------------}}} " Search --------------------------------------------------------------------{{{ " perform searches incrementally set incsearch " perform case-insensitive searches set ignorecase " if a search term includes upper case letters, use a cast-sensitive search set smartcase " highlights the last searched pattern set hlsearch " press escape twice to clear highlight search nnoremap :nohlsearch " ---------------------------------------------------------------------------}}} " Backup --------------------------------------------------------------------{{{ set nobackup set nowritebackup set noswapfile " ---------------------------------------------------------------------------}}} " Wild Menu -----------------------------------------------------------------{{{ " enable the wild menu. set wildmenu " list matches set wildmode=list:full set wildignore=.svn,CVS,.git " ignore verson control files set wildignore+=*.o,*.a,*.so " ignore compiled binaries set wildignore+=*.jpg,*.png,*.gif " ignore images set wildignore+=*.pdf " ignore pdf documents set wildignore+=*.pyc,*.pyo " ignore compiled Python files " ---------------------------------------------------------------------------}}} " Mouse ---------------------------------------------------------------------{{{ " enable the mouse if has('mouse') set mouse=a endif " hide the mouse when typing set mousehide " open up directories with a single click instead of needing to double-click let g:NERDTreeMouseMode = 2 " ---------------------------------------------------------------------------}}} " Colorscheme ---------------------------------------------------------------{{{ if &t_Co > 2 || has("gui_running") " enable syntax highlighting syntax on " enable 256-color mode set t_Co=256 " background-color erasing corrections to tell vim to fill the background " from our colorscheme instead of from the terminal default if (&term =~ '^xterm') set t_ut= | set ttyscroll=1 endif " this should not do anything but it does. set termguicolors let g:jellybeans_use_term_italics = 1 try colorscheme jellybeans catch silent! colorscheme delek endtry endif " ---------------------------------------------------------------------------}}} " Autocmd Hooks -------------------------------------------------------------{{{ if has("autocmd") " Put these in an autocmd group, so that we can delete them easily. augroup vimrcEx autocmd! autocmd BufNewFile,BufRead *.zig set filetype=zig autocmd BufNewFile,BufRead *.txt set filetype=text autocmd BufNewFile,BufRead *.gd set filetype=gdscript3 " on some machines md files are thought to be modula2 autocmd BufNewFile,BufRead *.md set filetype=markdown autocmd BufNewFile,BufRead *.tf set filetype=terraform " add Coloring for ChucK source autocmd BufNewFile,BufRead *.ck set filetype=ck " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid or when inside an event handler " (happens when dropping a file on gvim). " Also don't do it when the mark is in the first line, that is the default " position when opening a file. autocmd BufReadPost * \ if line("'\"") > 1 && line("'\"") <= line("$") | \ exe "normal! g`\"" | \ endif autocmd FileType html set omnifunc=htmlcomplete#CompleteTags autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags autocmd FileType php set omnifunc=phpcomplete#CompletePHP autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType css set omnifunc=csscomplete#CompleteCSS " causes VIM to enter the directory of the file being edited to simplify " finding related files. " autocmd BufEnter * silent! lcd %:p:h autocmd FileType go :iabbrev iff if {} autocmd FileType javascript :iabbrev iff if autocmd FileType javascript :iabbrev fun function augroup END else endif " ---------------------------------------------------------------------------}}} " Status Line ---------------------------------------------------------------{{{ " always show the status line set laststatus=2 " don't display the current mode in the message line, we moved it to the " status line. set noshowmode " don't show the readonly marker in help files, it's pointless. function! LightlineReadonly() return &readonly && &filetype !=# 'help' ? 'RO' : '' endfunction let g:lightline = { \ 'colorscheme': 'jellybeans', \ 'active': { \ 'left': [ \ ['mode', 'paste'], \ ['gitbranch'], \ ['llreadonly', 'filename', 'modified'] \ ], \ 'right': [ \ ['lineinfo'], \ ['filetype'] \ ] \ }, \ 'component_function': { \ 'gitbranch': 'fugitive#head', \ 'llreadonly': 'LightlineReadonly' \ } \ } " }}} " Normal|Visual|Operator-Pending Mode {{{ " ctrl-k to go to the next tab noremap :tabnext " ctrl-j to go to the previous tab noremap :tabprevious " ctrl-n to open a new tab with the current file noremap :tabnew % " move by visual lines when moving instead of physical lines noremap k gk noremap j gj noremap 0 g0 noremap $ g$ " ---------------------------------------------------------------------------}}} " Normal Mode ---------------------------------------------------------------{{{ " toggle line numbering with n nnoremap n :set number! " Shortcut to show invisible characters nnoremap l :set list! " leader ev to edit your vimrc nnoremap ev :vsplit $MYVIMRC " leader sv to source your vimrc nnoremap sv :source $MYVIMRC " leader ci inverts comment states on a line by line basis noremap ci NERDComInvertComment " ---------------------------------------------------------------------------}}} " Insert Mode ---------------------------------------------------------------{{{ " Ctrl-U deletes from the current position to the start of the line. inoremap u iabbrev @@ @jordanorelli " ---------------------------------------------------------------------------}}} " Command Mode --------------------------------------------------------------{{{ " new command mode command: w!! " allows you to sudo write the file you're currently editing without closing " (and thus losing) your changes. cnoremap w!! w !sudo tee % >/dev/null " command mode abbreviation :vhelp to open help text in a vertical split " instead of a horizontal split. cabbrev vhelp vertical help " prevents editing a file named "~", which I literally never want. cabbrev ~ $HOME " ---------------------------------------------------------------------------}}} " Operator-Pending Mode -----------------------------------------------------{{{ " new text object: "next paren". means the next open paren on the current " line. onoremap in( :normal! f(ci( " new text object: "last paren". means the previous open paren on the current " line. (using p would shadow the paragraph object) onoremap il( :normal! F)vi( " ---------------------------------------------------------------------------}}} " Supertab ------------------------------------------------------------------{{{ " use omnicomplete by default " let g:SuperTabDefaultCompletionType = "" " close doc window after finishing an autocomplete " let g:SuperTabClosePreviewOnPopupClose = 1 " ---------------------------------------------------------------------------}}} " YouCompleteMe -------------------------------------------------------------{{{ let g:ycm_keep_logfiles = 1 let g:ycm_log_level = 'debug' let g:ycm_language_server = \ [ \ { \ 'name': 'zig', \ 'cmdline': [ 'zls', '--debug-log' ], \ 'filetypes': [ 'zig' ], \ } \ ] " ---------------------------------------------------------------------------}}} " CtrlP ---------------------------------------------------------------------{{{ let g:ctrlp_map = '' let g:ctrlp_cmd = 'CtrlP' let g:ctrlp_user_command = [ \ '.git', \ 'cd %s && git ls-files -co --exclude-standard' \ ] " ---------------------------------------------------------------------------}}} " NERDTree ------------------------------------------------------------------{{{ if has("multi_byte") let g:NERDTreeDirArrowExpandable = '▸' let g:NERDTreeDirArrowCollapsible = '▾' else let g:NERDTreeDirArrowExpandable = '+' let g:NERDTreeDirArrowCollapsible = '-' endif " enable dir tree arrows let g:NERDTreeDirArrows = 1 " ---------------------------------------------------------------------------}}} " terraform -----------------------------------------------------------------{{{ let g:terraform_align=1 let g:terraform_fmt_on_save=1 " ---------------------------------------------------------------------------}}} " Commenting ----------------------------------------------------------------{{{ " left-align comment markers by default let g:NERDDefaultAlign='left' " insert a space after comment markers let g:NERDSpaceDelims=1 vmap K NERDCommenterToggle('n', 'Toggle') nmap KK NERDCommenterToggle('n', 'Toggle') " ---------------------------------------------------------------------------}}} " Misc ----------------------------------------------------------------------{{{ " keep 50 lines of command line history set history=50 " show commands as you type them (mostly for leader-based stuff) set showcmd " wrap long lines set wrap " force line wrapping to only happen at word boundaries set linebreak " wait 400ms after typing for updates (default is 4000) set updatetime=400 " set current working directory on file enter set autochdir " match angle brackets set matchpairs+=<:> " use visual bell instead of beeping set visualbell " you know what, just disable the error bells entirely set noerrorbells " ---------------------------------------------------------------------------}}}