1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" vimrc Extras
"
" Author:
" Rob Loach
"
" Source:
" https://github.com/robloach/dotfiles
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Background Transparency
" https://github.com/tinted-theming/base16-vim/tree/main?tab=readme-ov-file#background-transparency
let tinted_background_transparent=1
" ISO-8613-3 compatible terminal
" https://github.com/tinted-theming/base16-vim/tree/main?tab=readme-ov-file#troubleshooting
set termguicolors
" Colorspace
let tinted_colorspace=256
" Nerdtree
" https://github.com/preservim/nerdtree
let NERDTreeMinimalUI=1
map <F2> :NERDTreeToggle<CR>
" Show line numbers on the sidebar
set number
" Disable beep on errors
set noerrorbells
" Enable mouse for scrolling and resizing
set mouse=a