2020-06-26 18:37:31 +00:00
|
|
|
call plug#begin(stdpath('data') . '/plugged')
|
2020-05-06 21:46:35 +00:00
|
|
|
|
2020-05-07 17:43:25 +00:00
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
exe 'source' (stdpath('config') . '/airline.vim')
|
|
|
|
|
2020-05-07 04:20:54 +00:00
|
|
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
2020-06-15 08:18:21 +00:00
|
|
|
" Plug 'file:///home/michael/Projects/coc-nvim-rs', { 'do': 'cargo build --release' }
|
2020-05-07 04:20:54 +00:00
|
|
|
exe 'source' (stdpath('config') . '/coc.vim')
|
2020-06-08 16:11:42 +00:00
|
|
|
" Plug 'file://'.expand('~/Projects/coc-nvim-rs/')
|
2020-04-09 04:18:20 +00:00
|
|
|
|
2020-05-07 04:20:54 +00:00
|
|
|
Plug 'preservim/nerdtree'
|
|
|
|
exe 'source' (stdpath('config') . '/nerdtree.vim')
|
2020-04-09 04:18:20 +00:00
|
|
|
|
2020-05-07 04:20:54 +00:00
|
|
|
Plug 'ctrlpvim/ctrlp.vim'
|
2020-06-15 08:18:21 +00:00
|
|
|
let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""'
|
|
|
|
|
|
|
|
Plug 'kovisoft/slimv'
|
|
|
|
|
2020-05-07 17:43:25 +00:00
|
|
|
Plug 'mhinz/vim-startify'
|
|
|
|
Plug 'tomasiser/vim-code-dark'
|
|
|
|
Plug 'jiangmiao/auto-pairs'
|
|
|
|
Plug 'GutenYe/json5.vim'
|
2020-06-15 08:18:21 +00:00
|
|
|
Plug 'cespare/vim-toml'
|
2020-04-09 04:18:20 +00:00
|
|
|
|
2020-05-07 04:20:54 +00:00
|
|
|
Plug 'godlygeek/tabular'
|
|
|
|
Plug 'plasticboy/vim-markdown'
|
2020-06-08 16:11:42 +00:00
|
|
|
|
2020-06-26 18:24:22 +00:00
|
|
|
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
|
|
|
let g:go_fmt_command = 'goimports'
|
|
|
|
|
2020-05-07 04:20:54 +00:00
|
|
|
let g:vim_markdown_new_list_item_indent = 2
|
2020-06-15 08:18:21 +00:00
|
|
|
let g:vim_markdown_folding_disabled = 1
|
|
|
|
let g:vim_markdown_toml_frontmatter = 1
|
2020-05-07 04:20:54 +00:00
|
|
|
|
2020-06-15 08:18:21 +00:00
|
|
|
Plug 'editorconfig/editorconfig-vim'
|
2020-05-07 04:20:54 +00:00
|
|
|
" Plug 'dense-analysis/ale'
|
|
|
|
" Plug 'vim-syntastic/syntastic'
|
|
|
|
" Plug 'majutsushi/tagbar'
|
|
|
|
" Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
|
|
"
|
|
|
|
" Plug 'autozimu/LanguageClient-neovim', {
|
|
|
|
" \ 'branch': 'next',
|
|
|
|
" \ 'do': 'bash install.sh',
|
|
|
|
" \ }
|
|
|
|
"
|
|
|
|
" Plug 'rust-lang/rust.vim'
|
|
|
|
" " Plug 'racer-rust/vim-racer'
|
|
|
|
"
|
|
|
|
" Plug 'idris-hackers/idris-vim'
|
2020-04-09 04:18:20 +00:00
|
|
|
call plug#end()
|
|
|
|
|
|
|
|
" General config
|
|
|
|
|
|
|
|
colorscheme codedark
|
|
|
|
|
|
|
|
set splitright
|
|
|
|
set number
|
|
|
|
set cursorline
|
|
|
|
set hidden
|
2020-05-06 22:01:14 +00:00
|
|
|
set modeline
|
|
|
|
set modelines=5
|
2020-05-09 06:42:34 +00:00
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set expandtab
|
2020-06-15 08:18:21 +00:00
|
|
|
set formatoptions+=t
|
2020-04-09 04:18:20 +00:00
|
|
|
|
|
|
|
syntax on
|
|
|
|
filetype on
|
|
|
|
filetype plugin indent on
|
|
|
|
|
2020-05-07 17:43:25 +00:00
|
|
|
" Binds
|
|
|
|
|
2020-04-09 04:18:20 +00:00
|
|
|
let mapleader = ";"
|
2020-05-07 17:43:25 +00:00
|
|
|
|
2020-04-09 04:18:20 +00:00
|
|
|
nnoremap T :vsplit<BAR>vertical resize 54<BAR>terminal<CR>i
|
|
|
|
|
2020-05-07 17:43:25 +00:00
|
|
|
imap kj <Esc>
|
|
|
|
imap ;; <Esc>:w<CR>i
|
2020-04-09 04:18:20 +00:00
|
|
|
|
|
|
|
nmap <F8> :TagbarToggle<CR>
|
2020-05-09 06:42:34 +00:00
|
|
|
nmap ;; :w<CR>
|
2020-05-07 04:20:54 +00:00
|
|
|
|
|
|
|
" let g:LanguageClient_serverCommands = {
|
|
|
|
" \ 'rust': ['rust-analyzer'],
|
|
|
|
" \ }
|
|
|
|
" nnoremap <F5> :call LanguageClient_contextMenu()<CR>
|
|
|
|
" function LC_maps()
|
|
|
|
" if has_key(g:LanguageClient_serverCommands, &filetype)
|
|
|
|
" nnoremap <buffer> <silent> K :call LanguageClient#textDocument_hover()<cr>
|
|
|
|
" nnoremap <buffer> <silent> gd :call LanguageClient#textDocument_definition()<CR>
|
|
|
|
" nnoremap <buffer> <silent> <F2> :call LanguageClient#textDocument_rename()<CR>
|
|
|
|
" endif
|
|
|
|
" endfunction
|
|
|
|
" autocmd FileType * call LC_maps()
|
2020-04-09 04:18:20 +00:00
|
|
|
|
|
|
|
" Plugin-related configs
|
|
|
|
|