diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-09-07 11:38:40 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-09-07 11:38:40 -0500 |
commit | 99ed618b832be3531995745fb211e2aa195656b7 (patch) | |
tree | 3be409744f5bd30f1b6b029a2e9f9742b6f4f051 | |
parent | 1671b471d5754bb58166e6d1594c1f0d3d1e0244 (diff) | |
download | dotconfig-99ed618b832be3531995745fb211e2aa195656b7.tar.xz dotconfig-99ed618b832be3531995745fb211e2aa195656b7.zip |
truecolor support
-rwxr-xr-x | nvim/init.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 8eeb7bb..45f157b 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -24,6 +24,7 @@ set mouse=a " Because sometimes it's just easier to use the mouse set number relativenumber " Enable relative line numbers set smartcase " ...Unless the search term is capital set splitbelow splitright " Open splits on bottom/right instead of top/left +set termguicolors " Enable GUI colors for the terminal to get truecolor set wildmode=longest,list,full " Enable file auto-complete syntax on " Enable syntax highlighting @@ -58,7 +59,7 @@ nmap <S-TAB> gT nmap <C-T> :tabnew<CR> " Copy, paste, and cut with standard bindings map <C-c> "+y -map <C-v> "+gp +"map <C-v> "+gp map <C-x> "+x " Colorscheme for root and normal users (since vimrc is just symlinked to the root user's home) |