mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 11:43:03 +03:00
UPD
This commit is contained in:
parent
ca75876e1c
commit
bf887b0b4d
3 changed files with 18 additions and 2 deletions
|
|
@ -113,6 +113,7 @@ Plug 'liuchengxu/vim-clap'
|
|||
|
||||
" Misc
|
||||
Plug 'wakatime/vim-wakatime'
|
||||
Plug 'vimwiki/vimwiki'
|
||||
|
||||
" Has to be plugged the last
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
|
|
@ -221,6 +222,10 @@ nmap ga <Plug>(EasyAlign)
|
|||
" vim-sneak
|
||||
let g:sneak#s_next = 1
|
||||
|
||||
" vimwiki
|
||||
nnoremap <Leader>wah :VimwikiAll2HTML<CR>
|
||||
nnoremap <Leader>wl :VimwikiTabnewLink<CR>
|
||||
|
||||
" FSwitch
|
||||
" noremap + :FSAbove<CR>
|
||||
" noremap l+ :FSSplitLeft<CR>
|
||||
|
|
@ -240,7 +245,8 @@ let g:UltiSnipsJumpBackwardTrigger=""
|
|||
autocmd BufWritePost * GitGutter
|
||||
let g:magit_default_fold_level = 0
|
||||
|
||||
" rg
|
||||
" vimwiki
|
||||
let g:vimwiki_list = [{'path': '~/MEGAsync/vimwiki/'}]
|
||||
|
||||
" }}}
|
||||
|
||||
|
|
@ -691,7 +697,7 @@ let g:indent_guides_guide_size = 1
|
|||
let g:rainbow_active = 1
|
||||
let g:rainbow_conf = {
|
||||
\ 'guifgs': ['red', 'yellow', 'lightgreen', 'lightblue'],
|
||||
\ 'separately': { 'nerdtree': 0 }
|
||||
\ 'separately': { 'nerdtree': 0, 'vimwiki': 0 }
|
||||
\ }
|
||||
|
||||
" Tagbar
|
||||
|
|
|
|||
|
|
@ -3,3 +3,4 @@ https://booky.io/ booky.io
|
|||
qute://help/img/cheatsheet-big.png cheatsheet-big.png (3342×2060)
|
||||
https://lastpass.com/?ac=1&lpnorefresh=1 My LastPass Vault
|
||||
https://www.google.com/ Google
|
||||
file:///home/pavel/MEGAsync/vimwiki_html/index.html index
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import os
|
||||
import dracula.draw
|
||||
|
||||
config.load_autoconfig()
|
||||
|
|
@ -13,6 +14,7 @@ config.bind('gn', 'tab-clone')
|
|||
|
||||
config.bind('\\t', 'set-cmd-text -s :buffer')
|
||||
config.bind('\\b', 'set-cmd-text -s :bookmark-load')
|
||||
config.bind('\\ww', ':open file:///home/pavel/MEGAsync/vimwiki_html/index.html')
|
||||
|
||||
c.scrolling.bar = 'always'
|
||||
c.url.searchengines = {
|
||||
|
|
@ -20,6 +22,13 @@ c.url.searchengines = {
|
|||
"g": "https://www.google.com/search?hl=en&q={}"
|
||||
}
|
||||
|
||||
c.zoom.levels = ['25%', '33%', '50%', '67%', '75%', '90%', '100%', '110%',
|
||||
'125%', '133%', '150%', '175%', '200%', '250%', '300%',
|
||||
'400%', '500%']
|
||||
|
||||
if os.uname().nodename == 'pavel-ntk':
|
||||
c.zoom.default = '133%'
|
||||
|
||||
dracula.draw.blood(c, {
|
||||
'spacing': {
|
||||
'vertical': 6,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue