Update vim config
parent
2b26946eda
commit
924906a13f
250
.vimrc
250
.vimrc
|
@ -1,188 +1,142 @@
|
||||||
"
|
" general config _______________________
|
||||||
" General config
|
|
||||||
" ______________________________
|
|
||||||
|
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set hidden
|
set hidden
|
||||||
set ttyfast
|
set ttyfast
|
||||||
set updatetime=300
|
set updatetime=300
|
||||||
set timeout timeoutlen=1000 ttimeoutlen=50
|
set timeout timeoutlen=1000 ttimeoutlen=5
|
||||||
set undolevels=500
|
set undolevels=500
|
||||||
set history=500
|
set history=500
|
||||||
set shortmess+=c
|
set shortmess+=c
|
||||||
" set signcolumn=yes
|
set signcolumn=number " make sign replace number
|
||||||
set nowrap
|
set nowrap
|
||||||
set nu rnu " hybrid line numbers
|
set backspace=indent,eol,start " indentat
|
||||||
set clipboard=unnamedplus "use p to paste clipboard
|
set incsearch ignorecase smartcase hlsearch" search
|
||||||
|
set autoindent tabstop=2 softtabstop=2 shiftwidth=2 expandtab " indenting
|
||||||
" indentation
|
set lazyredraw " only essential redraws
|
||||||
set backspace=indent,eol,start
|
|
||||||
|
|
||||||
set incsearch ignorecase smartcase hlsearch
|
|
||||||
set autoindent tabstop=2 softtabstop=2 shiftwidth=2 expandtab
|
|
||||||
set emoji
|
|
||||||
|
|
||||||
" no backups
|
|
||||||
set nocursorcolumn
|
|
||||||
set nocursorline
|
|
||||||
set scrolljump=5
|
|
||||||
set lazyredraw
|
|
||||||
set synmaxcol=180
|
set synmaxcol=180
|
||||||
set nobackup
|
set nobackup nowb noswapfile " turn off backups
|
||||||
set nowritebackup
|
|
||||||
set noswapfile
|
|
||||||
set viminfo='20,\"100 "max 100 lines in registers
|
set viminfo='20,\"100 "max 100 lines in registers
|
||||||
|
|
||||||
set cmdheight=2
|
|
||||||
set novisualbell
|
set novisualbell
|
||||||
|
set conceallevel=1
|
||||||
|
set clipboard=unnamedplus
|
||||||
|
|
||||||
"
|
" functions ____________________________
|
||||||
" Keybindings
|
|
||||||
" ______________________________
|
|
||||||
|
|
||||||
" split navigation
|
func! ToggleRnu() " toggle: no numbers - relative nummbers
|
||||||
nnoremap <c-j> <c-w><c-j>
|
if(&nu) | set nonu nornu | else | set nu rnu | endif
|
||||||
nnoremap <c-k> <c-w><c-k>
|
endfunc
|
||||||
nnoremap <c-l> <c-w><c-l>
|
|
||||||
nnoremap <c-h> <c-w><c-h>
|
|
||||||
|
|
||||||
" leader key
|
" keybindings __________________________
|
||||||
|
|
||||||
|
nnoremap <space> <nop>
|
||||||
let mapleader = " "
|
let mapleader = " "
|
||||||
|
|
||||||
|
" splits
|
||||||
|
nmap ss :sp<Return><c-w>w
|
||||||
|
nmap sv :vs<Return><c-w>w
|
||||||
|
|
||||||
|
" split navigation
|
||||||
|
nnoremap sj <c-w>j
|
||||||
|
nnoremap sk <c-w>k
|
||||||
|
nnoremap sl <c-w>l
|
||||||
|
nnoremap sh <c-w>h
|
||||||
|
|
||||||
|
" split resizing
|
||||||
|
nnoremap srh <C-w><
|
||||||
|
nnoremap srl <C-w>>
|
||||||
|
nnoremap srk <C-w>+
|
||||||
|
nnoremap srj <C-w>-
|
||||||
|
|
||||||
" hard mode
|
" hard mode
|
||||||
map <Up> <NOP>
|
map <up> <nop>
|
||||||
map <Down> <NOP>
|
map <down> <nop>
|
||||||
map <Left> <NOP>
|
map <left> <nop>
|
||||||
map <Right> <NOP>
|
map <right> <nop>
|
||||||
|
|
||||||
" quick-quit
|
" quick quit
|
||||||
:ca Q q
|
nnoremap <leader>w :w<cr>
|
||||||
:ca Q! q!
|
nnoremap <leader>q :q<cr>
|
||||||
|
|
||||||
" quick help
|
" quick exit insert
|
||||||
:ca htab :tab h
|
inoremap <esc> <nop>
|
||||||
|
inoremap jj <esc>
|
||||||
|
|
||||||
|
" clear search highlight
|
||||||
|
nnoremap <leader><space> :noh<cr>
|
||||||
|
|
||||||
|
" silver search
|
||||||
|
nnoremap <leader>A :Ag <cr>
|
||||||
|
|
||||||
|
" toggle numbers
|
||||||
|
nnoremap <leader>n :call ToggleRnu()<cr>
|
||||||
|
|
||||||
" coc
|
" coc
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ pumvisible() ? "\<C-n>" :
|
\ pumvisible() ? "\<C-n>" :
|
||||||
\ <SID>check_back_space() ? "\<TAB>" :
|
\ <SID>check_back_space() ? "\<TAB>" :
|
||||||
\ coc#refresh()
|
\ coc#refresh()
|
||||||
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
|
|
||||||
|
noremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
|
||||||
|
|
||||||
function! s:check_back_space() abort
|
function! s:check_back_space() abort
|
||||||
let col = col('.') - 1
|
let col = col('.') - 1
|
||||||
return !col || getline('.')[col - 1] =~# '\s'
|
return !col || getline('.')[col - 1] =~# '\s'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" use @ instead of space
|
" <c-space> triggers completion
|
||||||
inoremap <silent><expr> <c-@> coc#refresh()
|
inoremap <silent><expr> <c-@> coc#refresh()
|
||||||
|
|
||||||
if has('patch8.1.1068')
|
" code action on cursor position
|
||||||
inoremap <expr> <cr> complete_info()["selected"] != "-1" ? "\<C-y>" : "\<C-g>u\<CR>"
|
nmap <leader>do <Plug>(coc-codeaction)
|
||||||
else
|
|
||||||
imap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
|
|
||||||
endif
|
|
||||||
|
|
||||||
nmap <silent> [g <Plug>(coc-diagnostic-prev)
|
" apply code action to selected region
|
||||||
nmap <silent> ]g <Plug>(coc-diagnostic-next)
|
" xmap <leader>a <Plug>(coc-codeaction-selected)
|
||||||
|
" nmap <leader>a <Plug>(coc-codeaction-selected)
|
||||||
nmap <silent> gd <Plug>(coc-definition)
|
|
||||||
nmap <silent> gy <Plug>(coc-type-definition)
|
|
||||||
nmap <silent> gi <Plug>(coc-implementation)
|
|
||||||
nmap <silent> gr <Plug>(coc-references)
|
|
||||||
|
|
||||||
nnoremap <silent> K :call <SID>show_documentation()<CR>
|
|
||||||
|
|
||||||
function! s:show_documentation()
|
|
||||||
if (index(['vim','help'], &filetype) >= 0)
|
|
||||||
execute 'h '.expand('<cword>')
|
|
||||||
else
|
|
||||||
call CocAction('doHover')
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
autocmd CursorHold * silent call CocActionAsync('highlight')
|
|
||||||
|
|
||||||
"nmap <leader>rn <Plug>(coc-rename)
|
|
||||||
|
|
||||||
"xmap <leader>f <Plug>(coc-format-selected)
|
|
||||||
"nmap <leader>f <Plug>(coc-format-selected)
|
|
||||||
|
|
||||||
augroup mygroup
|
|
||||||
autocmd!
|
|
||||||
autocmd FileType typescript, json setl formatexpr=CocAction('formatSelected')
|
|
||||||
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
|
|
||||||
augroup end
|
|
||||||
|
|
||||||
"xmap <leader>a <Plug>(coc-codeaction-selected)
|
|
||||||
"nmap <leader>a <Plug>(coc-codeaction-selected)
|
|
||||||
|
|
||||||
"nmap <leader>ac <Plug>(coc-codeaction)
|
|
||||||
"nmap <leader>qf <Plug>(coc-fix-current)
|
|
||||||
|
|
||||||
"xmap if <Plug>(coc-funcobj-i)
|
|
||||||
"xmap af <Plug>(coc-funcobj-a)
|
|
||||||
"omap if <Plug>(coc-funcobj-i)
|
|
||||||
"omap af <Plug>(coc-funcobj-a)
|
|
||||||
|
|
||||||
"nmap <silent> <TAB> <Plug>(coc-range-select)
|
|
||||||
"xmap <silent> <TAB> <Plug>(coc-range-select)
|
|
||||||
|
|
||||||
command! -nargs=0 Format :call CocAction('format')
|
|
||||||
command! -nargs=? Fold :call CocAction('fold', <f-args>)
|
|
||||||
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')
|
|
||||||
|
|
||||||
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
|
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
|
||||||
|
|
||||||
"nnoremap <silent> <space>a :<C-u>CocList diagnostics<cr>
|
" :Prettier command to prettify file
|
||||||
"nnoremap <silent> <space>e :<C-u>CocList extensions<cr>
|
|
||||||
"nnoremap <silent> <space>c :<C-u>CocList commands<cr>
|
|
||||||
"nnoremap <silent> <space>o :<C-u>CocList outline<cr>
|
|
||||||
"nnoremap <silent> <space>s :<C-u>CocList -I symbols<cr>
|
|
||||||
"nnoremap <silent> <space>j :<C-u>CocNext<CR>
|
|
||||||
"nnoremap <silent> <space>k :<C-u>CocPrev<CR>
|
|
||||||
"nnoremap <silent> <space>p :<C-u>CocListResume<CR>
|
|
||||||
|
|
||||||
let g:coc_global_extensions = [
|
|
||||||
\'coc-css',
|
|
||||||
\'coc-eslint',
|
|
||||||
\'coc-html',
|
|
||||||
\'coc-json',
|
|
||||||
\'coc-prettier',
|
|
||||||
\'coc-svelte',
|
|
||||||
\'coc-tsserver',
|
|
||||||
\'coc-emmet'
|
|
||||||
\]
|
|
||||||
|
|
||||||
command! -nargs=0 Prettier :CocCommand prettier.formatFile
|
command! -nargs=0 Prettier :CocCommand prettier.formatFile
|
||||||
|
|
||||||
"
|
" plugins ______________________________
|
||||||
" Plugins
|
|
||||||
" ______________________________
|
|
||||||
|
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
|
||||||
Plug 'scrooloose/nerdtree'
|
Plug 'preservim/nerdcommenter'
|
||||||
Plug 'yuezk/vim-js'
|
|
||||||
Plug 'maxmellon/vim-jsx-pretty'
|
|
||||||
Plug 'ryanoasis/vim-devicons'
|
|
||||||
Plug 'junegunn/fzf', { 'do': './install --bin' }
|
Plug 'junegunn/fzf', { 'do': './install --bin' }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'leafgarland/typescript-vim'
|
|
||||||
Plug 'peitalin/vim-jsx-typescript'
|
Plug 'pangloss/vim-javascript', { 'for': ['javascript', 'javascript.jsx'] }
|
||||||
|
Plug 'leafgarland/typescript-vim', { 'for': ['typescript', 'typescript.tsx'] }
|
||||||
|
Plug 'peitalin/vim-jsx-typescript', { 'for': ['typescript.tsx'] }
|
||||||
|
|
||||||
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
|
let g:coc_global_extensions = [
|
||||||
|
\'coc-eslint',
|
||||||
|
\'coc-prettier',
|
||||||
|
\'coc-tsserver',
|
||||||
|
\'coc-python',
|
||||||
|
\'coc-html',
|
||||||
|
\'coc-emmet',
|
||||||
|
\'coc-css',
|
||||||
|
\'coc-svg',
|
||||||
|
\'coc-svelte',
|
||||||
|
\'coc-json',
|
||||||
|
\'coc-markdownlint',
|
||||||
|
\'coc-yaml',
|
||||||
|
\]
|
||||||
|
|
||||||
Plug 'supercollider/scvim'
|
Plug 'supercollider/scvim'
|
||||||
Plug 'tidalcycles/vim-tidal'
|
Plug 'tidalcycles/vim-tidal'
|
||||||
Plug 'preservim/nerdcommenter'
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" NERDTree
|
" plugin config ________________________
|
||||||
let g:NERDTreeShowHidden = 1
|
|
||||||
let g:NERDTreeMinimalUI = 1
|
|
||||||
let g:NERDTreeIgnore = []
|
|
||||||
let g:NERDTreeStatusline = ''
|
|
||||||
|
|
||||||
" NERDCommenter
|
" NERDCommenter
|
||||||
let g:NERDSpaceDelims = 1
|
let g:NERDSpaceDelims = 1
|
||||||
|
@ -192,13 +146,19 @@ let g:NERDCustomDelimiters = { 'tidal': { 'left': '{-','right': '-}' } }
|
||||||
let g:NERDCustomDelimiters = { 'tidal': { 'left': '--','right': '' } }
|
let g:NERDCustomDelimiters = { 'tidal': { 'left': '--','right': '' } }
|
||||||
let g:NERDCommentEmptyLines = 1
|
let g:NERDCommentEmptyLines = 1
|
||||||
|
|
||||||
" FZF - use silversearcher-ag to respect .gitignore
|
" fzf popup
|
||||||
|
let g:fzf_layout = {'window': { 'width': 0.62, 'height': 0.62}}
|
||||||
|
|
||||||
|
" fzf - use silversearcher-ag to respect .gitignore
|
||||||
let $FZF_DEFAULT_COMMAND = 'ag -g ""'
|
let $FZF_DEFAULT_COMMAND = 'ag -g ""'
|
||||||
let g:ag_working_path_mode="r"
|
let g:ag_working_path_mode="r"
|
||||||
let g:vim_jsx_pretty_colorful_config = 1
|
set wildignore+=*/node_modules/*,*/tmp/*,*.so,*.swp,*.zip " fzf ignore
|
||||||
|
|
||||||
" FZF ignore
|
" js & ts
|
||||||
set wildignore+=*/node_modules/*,*/tmp/*,*.so,*.swp,*.zip
|
let g:javascript_plugin_jsdoc = 1 " jsdoc syntax highlighting
|
||||||
|
let g:javascript_plugin_flow = 1 " flow syntax highlighting
|
||||||
|
let g:javascript_conceal_function = "ƒ"
|
||||||
|
let g:javascript_conceal_return = "⇚""
|
||||||
|
|
||||||
" SuperCollider
|
" SuperCollider
|
||||||
au BufEnter,BufWinEnter,BufNewFile,BufRead *.sc,*.scd set filetype=supercollider
|
au BufEnter,BufWinEnter,BufNewFile,BufRead *.sc,*.scd set filetype=supercollider
|
||||||
|
@ -207,18 +167,18 @@ au Filetype supercollider packadd scvim
|
||||||
" tidalvim
|
" tidalvim
|
||||||
let g:tidal_flash_duration = 50
|
let g:tidal_flash_duration = 50
|
||||||
|
|
||||||
" plugin keybindings
|
" plugin keybindings ___________________
|
||||||
nnoremap <silent> <C-b> :NERDTreeToggle<CR>
|
|
||||||
nnoremap <C-p> :FZF<CR>
|
nnoremap <silent> <C-b> :Lex<CR>
|
||||||
|
nnoremap <c-p> :FZF<cr>
|
||||||
|
nnoremap <leader>b :Buffers<cr>
|
||||||
|
nnoremap <leader>h :History<cr>
|
||||||
let g:fzf_action = {
|
let g:fzf_action = {
|
||||||
\ 'ctrl-t': 'tab split',
|
\ 'ctrl-t': 'tab split',
|
||||||
\ 'ctrl-s': 'split',
|
\ 'ctrl-s': 'split',
|
||||||
\ 'ctrl-v': 'vsplit'
|
\ 'ctrl-v': 'vsplit'
|
||||||
\}
|
\}
|
||||||
|
|
||||||
"
|
" theme ________________________________
|
||||||
" Theme
|
|
||||||
" ______________________________
|
|
||||||
|
|
||||||
colorscheme darkness
|
colorscheme darkness
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue