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

@@ -79,6 +79,7 @@ profile_packages:
- blueman
- bridge-utils
- celluloid
- ctags
- chromium
- deluge-gtk
- dnsmasq
@@ -86,6 +87,9 @@ profile_packages:
- exo
- fontconfig-devel
- freetype-devel
- gvfs-cdda
- gvfs-mtp
- gvfs-smb
- gufw
- libvirt
- libspa-bluetooth
@@ -109,6 +113,7 @@ profile_packages:
- shotwell
- terminus-font
- Thunar
- thunar-archive-plugin
- thunar-volman
- virt-manager
- virt-manager-tools

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