Add vimwiki; remap vimwiki index combo; minor refactors

This commit is contained in:
mitchell 2020-01-22 00:16:00 -05:00
parent 4e7972ced1
commit 7192e85f84
3 changed files with 10 additions and 3 deletions

3
.gitmodules vendored
View File

@ -70,3 +70,6 @@
[submodule ".vim/bundle/limelight.vim"]
path = .vim/bundle/limelight.vim
url = https://github.com/junegunn/limelight.vim.git
[submodule ".vim/bundle/vimwiki"]
path = .vim/bundle/vimwiki
url = https://github.com/vimwiki/vimwiki.git

1
.vim/bundle/vimwiki Submodule

@ -0,0 +1 @@
Subproject commit 64c9f3d36d632b1657616c06ea8f08f14cf6438d

9
.vimrc
View File

@ -2,8 +2,8 @@ if &shell =~# 'fish$'
set shell=sh
endif
syntax enable
filetype plugin on
syntax on
execute pathogen#infect()
set t_Co=256
@ -48,6 +48,7 @@ nnoremap <leader>g :ALEGoToDefinition<cr>
nnoremap <leader>r :ALEFindReferences<cr>
nnoremap <leader>d :ALEDetail<cr>
nnoremap <leader>h :ALEHover<cr>
nmap <leader>wk <Plug>VimwikiIndex
" next line is necessary to prevent background rendering bug with kitty term
let &t_ut=''
@ -99,8 +100,10 @@ let g:ale_elixir_elixir_ls_release = expand('~/Documents/elixir-ls/bin')
let g:OmniSharp_server_stdio = 1
let g:vimwiki_list = [{'path': '/keybase/private/mjfs/wiki'}]
augroup js_ft
au!
autocmd BufNewFile,BufRead *.jsx set ft=javascript
autocmd BufNewFile,BufRead *.tsx set ft=typescript
autocmd BufNewFile,BufRead *.jsx set ft=javascript
autocmd BufNewFile,BufRead *.tsx set ft=typescript
augroup END