1
0
mirror of https://github.com/gryf/.vim.git synced 2026-03-26 15:53:33 +01:00

Compare commits

...

4 Commits

Author SHA1 Message Date
9f2bf32892 Change riv.vim to vim-rst for restructured text support 2023-02-17 14:11:55 +01:00
61fc307d68 Comment update 2023-02-17 14:11:30 +01:00
a16be876d6 Added vimwiki headers support in tagbar.
Additionally for the vim config, there should be also appropriate ctags
configuration done in ~/.config/ctags/vimwiki.ctags:

--langdef=vimwiki
--langmap=vimwiki:.wiki
--regex-vimwiki=/^=[ \t]+(.+)[ \t]+=$/\1/h,header/
--regex-vimwiki=/^==[ \t]+(.+)[ \t]+==$/. \1/h,header/
--regex-vimwiki=/^===[ \t]+(.+)[ \t]+===$/.   \1/h,header/
--regex-vimwiki=/^====[ \t]+(.+)[ \t]+====$/.     \1/h,header/
--regex-vimwiki=/^=====[ \t]+(.+)[ \t]+=====$/.       \1/h,header/
--regex-vimwiki=/^======[ \t]+(.+)[ \t]+======$/.         \1/h,header/
2023-02-17 13:50:30 +01:00
a874ec9d16 Ale configuration 2023-02-17 13:50:17 +01:00

15
vimrc
View File

@@ -31,7 +31,7 @@ Plug 'gryf/snipmate.vim'
Plug 'gryf/vim-latex-compiler'
Plug 'gryf/wombat256grf'
Plug 'gryf/zoom.vim'
Plug 'gu-fan/riv.vim', { 'for': 'rst' }
Plug 'habamax/vim-rst', { 'for': 'rst' }
Plug 'honza/vim-snippets'
Plug 'kazuyukitanimura/jsbeautify'
Plug 'kien/ctrlp.vim'
@@ -423,6 +423,10 @@ if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif
"}}}
"Ale {{{2
let g:ale_sh_bashate_executable="bashate -i E006"
let g:ale_virtualtext_cursor=0
"}}}
"KickAssembler {{{2
let g:kickass_path = '/opt/KickAssembler/KickAss.jar'
"}}}
@@ -533,9 +537,16 @@ let g:showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"Tagbar {{{2
nmap <Leader>t :Tagbar<CR>
let g:tagbar_compact = 1
let g:tagbar_type_vimwiki = {
\ 'ctagstype' : 'vimwiki',
\ 'kinds' : [
\ 'h:header',
\ ],
\ 'sort' : 0
\ }
" Note: see statusline settings for status bar tag conf
"}}}
"{{{2
"Sandwitch {{{2
" Make sandwitch to use my memorymuscle craved shorcuts for surround
runtime macros/sandwich/keymap/surround.vim
"}}}