Add desktop package and Vim tag support

This commit is contained in:
Fabio Scotto di Santolo
2026-04-04 23:02:05 +02:00
parent 919bf2da7f
commit c845471e0c
2 changed files with 10 additions and 1 deletions

View File

@@ -202,6 +202,10 @@ set foldnestmax=3
set tags=./tags;,tags;
if filereadable(expand('~/.tags'))
set tags+=~/.tags
endif
nnoremap <silent> <leader>t :tag <C-R><C-W><CR>
nnoremap <silent> <leader>pt :ptag <C-R><C-W><CR>
nnoremap <silent> <leader>po :popen<CR>
@@ -481,4 +485,4 @@ if &t_Co>=256
hi WarningMsg ctermfg=214
hi Todo ctermfg=16 ctermbg=220 cterm=bold
endif
endif