I really like the Dracula theme.I wanted to use the theme for when I use Vim but it’s not a color scheme native to Vim. You can get the official theme for Vim¹ but it involves a number of steps. After perusing the color schemes native to Vim, I found evening to be really close… Continue reading Get Dracula Approximate Theme in Vim
Tag: vim
Adding a Keyboard Shortcut to VIM
The below example will show you how to use Ctrl + k as a keyboard shortcut to execute the following key sequence when you are in insert mode : <esc>:wq<Enter> Example open ~/.vimrc file go to the bottom of the file add the following lineinoremap <C-k> <esc>:wq<Enter> save and close file exit and restart terminal