summaryrefslogtreecommitdiff
path: root/nvim/init.vim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/init.vim')
-rwxr-xr-xnvim/init.vim3
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)