commit c725a93782f160d48c36376dcacf9e0c89e7b214
parent a74358c442ebfd75d26b968309bb1b724c210a69
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Sun, 22 Sep 2019 13:47:37 -0400
vim: updated vimrc
Former-commit-id: d7a6e115699a178efad27e91fc7ad0e9c6f49388
Diffstat:
2 files changed, 66 insertions(+), 5 deletions(-)
diff --git a/vim/ultisnips/vimwiki.snippets b/vim/ultisnips/vimwiki.snippets
diff --git a/vim/vimrc b/vim/vimrc
@@ -28,9 +28,6 @@ Plug 'tpope/vim-surround'
" Eunuch - shell commands but in vim
Plug 'tpope/vim-eunuch'
-" Markdown in vim (better than built-in)
-Plug 'plasticboy/vim-markdown'
-
" Aligning and filtering text
Plug 'godlygeek/tabular'
@@ -182,6 +179,14 @@ let g:tagbar_type_scss = {
\ ],
\ 'sort': 0
\ }
+let g:tagbar_type_conf = {
+ \ 'ctagstype' : 'lfrc',
+ \ 'kinds' : [
+ \ 'c:Commands',
+ \ 'm:Maps'
+ \ ],
+ \ 'sort': 0
+ \ }
" }}}
" Doge {{{
let g:doge_mapping = '<leader>gd'
@@ -220,8 +225,6 @@ let g:fzf_action = {
" }}}
" Vimwiki {{{
-nmap <leader><CR> <Plug>VimwikiSplitLink
-nmap <leader>v<CR> <Plug>VimwikiVSplitLink
let tlist_vimwiki_settings = 'wiki;h:Headers'
let g:vimwiki_table_mappings = 0 " avoid vimwiki conflict with Ultisnips
@@ -265,6 +268,11 @@ endif
" where to find tags files
set tags=./tags,tags,.git/tags
+" dictionary file
+set dictionary=/usr/share/dict/words
+
+" thesaurus file
+set thesaurus=~/.vim/thesaurus.txt
" matchit.vim is default, why not enable it
runtime macros/matchit.vim
@@ -539,6 +547,59 @@ execute "digraphs \\|=" . 0x22A8
execute "digraphs \\|!" . 0x22AD
execute "digraphs nS " . 0x207F
execute "digraphs ns " . 8345
+
+execute "digraphs A& " . 0x1D4D0
+execute "digraphs B& " . 0x1D4D1
+execute "digraphs C& " . 0x1D4D2
+execute "digraphs D& " . 0x1D4D3
+execute "digraphs E& " . 0x1D4D4
+execute "digraphs F& " . 0x1D4D5
+execute "digraphs G& " . 0x1D4D6
+execute "digraphs H& " . 0x1D4D7
+execute "digraphs I& " . 0x1D4D8
+execute "digraphs J& " . 0x1D4D9
+execute "digraphs K& " . 0x1D4DA
+execute "digraphs L& " . 0x1D4DB
+execute "digraphs M& " . 0x1D4DC
+execute "digraphs N& " . 0x1D4DD
+execute "digraphs O& " . 0x1D4DE
+execute "digraphs P& " . 0x1D4DF
+execute "digraphs Q& " . 0x1D4E0
+execute "digraphs R& " . 0x1D4E1
+execute "digraphs S& " . 0x1D4E2
+execute "digraphs T& " . 0x1D4E3
+execute "digraphs U& " . 0x1D4E4
+execute "digraphs V& " . 0x1D4E5
+execute "digraphs W& " . 0x1D4E6
+execute "digraphs X& " . 0x1D4E7
+execute "digraphs Y& " . 0x1D4E8
+execute "digraphs Z& " . 0x1D4E9
+execute "digraphs a& " . 0x1D4EA
+execute "digraphs b& " . 0x1D4EB
+execute "digraphs c& " . 0x1D4EC
+execute "digraphs d& " . 0x1D4ED
+execute "digraphs e& " . 0x1D4EE
+execute "digraphs f& " . 0x1D4EF
+execute "digraphs g& " . 0x1D4F0
+execute "digraphs h& " . 0x1D4F1
+execute "digraphs i& " . 0x1D4F2
+execute "digraphs j& " . 0x1D4F3
+execute "digraphs k& " . 0x1D4F4
+execute "digraphs l& " . 0x1D4F5
+execute "digraphs m& " . 0x1D4F6
+execute "digraphs n& " . 0x1D4F7
+execute "digraphs o& " . 0x1D4F8
+execute "digraphs p& " . 0x1D4F9
+execute "digraphs q& " . 0x1D4FA
+execute "digraphs r& " . 0x1D4FB
+execute "digraphs s& " . 0x1D4FC
+execute "digraphs t& " . 0x1D4FD
+execute "digraphs u& " . 0x1D4FE
+execute "digraphs v& " . 0x1D4FF
+execute "digraphs w& " . 0x1D500
+execute "digraphs x& " . 0x1D501
+execute "digraphs y& " . 0x1D502
+execute "digraphs z& " . 0x1D503
" }}}
" Mappings {{{