Add NOTE command (on JIX)

Enable parenthesis matching
This commit is contained in:
Jonas Ryssel 2021-03-31 16:46:09 +02:00
parent 8606502d36
commit cb7a93e55b

View File

@ -231,6 +231,8 @@ tnoremap <Esc> <C-\><C-n>
" Lightline " Lightline
"\ 'colorscheme': 'solarized', "\ 'colorscheme': 'solarized',
" \ 'gitbranch': '%{exists("*fugitive#head") && fugitive#head()!=""?"".fugitive#head():""}',
" \ 'gitbranch': '%{FugitiveStatusline()}',
let g:lightline = { let g:lightline = {
\ 'active': { \ 'active': {
\ 'left':[ \ 'left':[
@ -289,7 +291,7 @@ tnoremap <Esc> <C-\><C-n>
set noshowmode set noshowmode
set noshowmatch set noshowmatch
set nolazyredraw set nolazyredraw
let loaded_matchparen = 1 " disable matching parentheses " let loaded_matchparen = 1 " disable matching parentheses
set foldcolumn=2 " display where folds are defined - but only in 2 layer (increment 2 to add more layers) set foldcolumn=2 " display where folds are defined - but only in 2 layer (increment 2 to add more layers)
" }}} " }}}
@ -338,7 +340,7 @@ endif
" Todo config {{{ " Todo config {{{
let g:bujo#todo_file_path = stdpath('data') . '/bujo' let g:bujo#todo_file_path = stdpath('data') . '/bujo'
command! TODO execute "botright Todo g" command! TODO execute "botright Todo g"
let g:bujo#window_width = 60 let g:bujo#window_width = 80
function BujoSearchCustom(pattern) function BujoSearchCustom(pattern)
return (search(a:pattern, 'nc', line('.')) || search(a:pattern, 'nbc', line('.'))) return (search(a:pattern, 'nc', line('.')) || search(a:pattern, 'nbc', line('.')))
@ -382,6 +384,12 @@ endif
augroup END augroup END
" }}} " }}}
" JIX Notes {{{
if $USER =~ "^jry$"
command! NOTE exec "botright 80 vs " . glob('~/') . 'Notes/Notes' . (FugitiveHead() != "" ? '_'.FugitiveHead() : '')
end
" }}}
" Fuzzy finding " Fuzzy finding
" TODO: Figure out fuzzy finding on windows " TODO: Figure out fuzzy finding on windows
if !(has('win32') || has('win64')) if !(has('win32') || has('win64'))
@ -443,7 +451,7 @@ endif
call neomake#configure#automake('nrwi', 500) call neomake#configure#automake('nrwi', 500)
" Autoopen error list " Autoopen error list
let g:neomake_open_list = 2 let g:neomake_open_list = 2 " 0: show hints, 1: show list and move cursor to list, 2: show list, but don't move cursor
" Configure for C " Configure for C
let g:c_syntax_for_h=1 let g:c_syntax_for_h=1