Cambiare colore del tema in Vim
Uno degli aspetti miglrio di Vim è la sua configurabilità.
Oggi vediamo come cambiare tema (color scheme).
Intanto, quelli di default stanno qui:
$ ls -l /usr/share/vim/vim80/colors/
totale 76
-rw-r--r-- 1 root root 2476 7 ott 13.52 blue.vim
-rw-r--r-- 1 root root 2990 7 ott 13.52 darkblue.vim
-rw-r--r-- 1 root root 548 7 ott 13.52 default.vim
-rw-r--r-- 1 root root 2522 7 ott 13.52 delek.vim
-rw-r--r-- 1 root root 2812 7 ott 13.52 desert.vim
-rw-r--r-- 1 root root 1666 7 ott 13.52 elflord.vim
-rw-r--r-- 1 root root 2452 7 ott 13.52 evening.vim
-rw-r--r-- 1 root root 1958 7 ott 13.52 industry.vim
-rw-r--r-- 1 root root 3555 7 ott 13.52 koehler.vim
-rw-r--r-- 1 root root 2460 7 ott 13.52 morning.vim
-rw-r--r-- 1 root root 2006 7 ott 13.52 murphy.vim
-rw-r--r-- 1 root root 1037 7 ott 13.52 pablo.vim
-rw-r--r-- 1 root root 2673 7 ott 13.52 peachpuff.vim
-rw-r--r-- 1 root root 2904 7 ott 13.52 README.txt
-rw-r--r-- 1 root root 1393 7 ott 13.52 ron.vim
-rw-r--r-- 1 root root 2720 7 ott 13.52 shine.vim
-rw-r--r-- 1 root root 2445 7 ott 13.52 slate.vim
-rw-r--r-- 1 root root 1629 7 ott 13.52 torte.vim
-rw-r--r-- 1 root root 1840 7 ott 13.52 zellner.vim
Per cambiarlo, ci basta aggiungere l'opzione colo nel file di configurazione.
Se ad esempio lo vogliamo impostare a livello globale, modifichiamo il file /etc/vimrc:
colo morning
syntax on
Chiudete Vim, e riapritelo.
Se invece volete modificare solo il vostro utente, create nella vostro home il file .vimrc, e metteteci quelle due righe.
Enjoy!
linux vim colo
Commentami!