Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
97 lines (85 sloc)
2.61 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set autoindent | |
set backspace=2 | |
set cursorline | |
set expandtab | |
set hlsearch | |
set incsearch | |
set nocompatible | |
set noswapfile | |
set updatetime=300 | |
set signcolumn=yes | |
set clipboard=unnamed | |
set nowrap | |
set encoding=utf-8 | |
set number | |
set relativenumber | |
set shiftwidth=2 | |
set softtabstop=2 | |
set showcmd | |
set wildmenu | |
set wildmode=longest:full,full | |
set wildignore+=*/node_modules/*,*/elm-stuff/*,*/public/* | |
filetype plugin indent on | |
syntax enable | |
" Keybindings | |
noremap <Leader>p :!prettier % --write<CR> | |
noremap <Leader>e :!open -e %<CR> | |
noremap <Leader>s :update<CR> | |
noremap <Leader>h :noh<CR> | |
noremap <Leader>x :q!<CR> | |
noremap <Leader>o :Gbrowse!<CR> | |
noremap <Leader>. :Gvsplit master:%<CR> | |
" vim.coc settings | |
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>" | |
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>" | |
autocmd! CompleteDone * if pumvisible() == 0 | pclose | endif | |
nmap <silent> [g <Plug>(coc-diagnostic-prev) | |
nmap <silent> ]g <Plug>(coc-diagnostic-next) | |
" Async equivalent of 'nmap <silent> gd <Plug>(coc-definition)' | |
nmap <silent> gd :<C-u>call CocActionAsync('jumpDefinition')<CR> | |
nmap <silent> gh :<C-u>call CocActionAsync('doHover')<CR> | |
nmap <silent> gy <Plug>(coc-type-definition) | |
nmap <silent> gi <Plug>(coc-implementation) | |
nmap <silent> gr <Plug>(coc-references) | |
:imap jk <Esc> | |
noremap Y y$ | |
" Make Ctrl+H bounce between panes instead of going left explicitly. | |
" Since I only use a single Vim window + NERDTree, this replicates | |
" a move-to-left motion in addition to jumping back and forth the | |
" same way tmux bindings work. | |
noremap <C-h> <C-w>w | |
noremap <C-l> <C-w>l | |
noremap <C-k> <C-w>k | |
noremap <C-j> <C-w>j | |
nnoremap <Enter> @@ | |
" Move to previous file | |
nmap <silent> gb :b#<CR> | |
" Command mode mappings | |
cnoremap <C-a> <Home> | |
cnoremap <C-b> <End> | |
" Plugins | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' | |
Plug 'tpope/vim-repeat' | |
Plug 'tpope/vim-fugitive' | |
Plug 'tpope/vim-rhubarb' | |
Plug 'tpope/vim-surround' | |
Plug 'tikhomirov/vim-glsl' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'tidalcycles/vim-tidal' | |
Plug 'vim-airline/vim-airline' | |
Plug 'arcticicestudio/nord-vim' | |
Plug 'leafOfTree/vim-svelte-plugin' | |
call plug#end() | |
" Make nerdtree open automatically when calling `vim` on a folder | |
autocmd StdinReadPre * let s:std_in=1 | |
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif | |
let g:ctrlp_map = '<c-p>' | |
let g:ctrlp_cmd = 'CtrlP :pwd' | |
let g:ctrlp_custom_ignore = 'node_modules\|elm-stuff\|DS_Store\|git' | |
let g:vim_svelte_plugin_use_typescript = 1 | |
let g:airline_theme='nord' | |
set t_Co=256 | |
set background=dark | |
colorscheme nord |