nvim update

lightmode
E. Almqvist 3 years ago
parent f3e5d388a5
commit e5824e1f53
  1. 11
      .config/nvim/init.vim

@ -28,8 +28,6 @@ call plug#begin('~/.config/nvim/plugged')
Plug 'rafi/awesome-vim-colorschemes' Plug 'rafi/awesome-vim-colorschemes'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'arakashic/chromatica.nvim' Plug 'arakashic/chromatica.nvim'
"Plug 'vim-airline/vim-airline' " Airline
"Plug 'vim-airline/vim-airline-themes' " Airline themes'
call plug#end() call plug#end()
set nocompatible set nocompatible
@ -48,10 +46,19 @@ set tabstop=4
set shiftwidth=4 set shiftwidth=4
" Binds " Binds
" Tabs
vmap <Tab> >gv vmap <Tab> >gv
vmap <S-Tab> <gv vmap <S-Tab> <gv
" NERDTree
nmap <silent> <C-D> :NERDTreeToggle<CR> nmap <silent> <C-D> :NERDTreeToggle<CR>
" Clipboard
noremap <Leader>y "*y
noremap <Leader>p "*p
noremap <Leader>Y "+y
noremap <Leader>P "+p
" Theme " Theme
set t_Co=16 set t_Co=16
colors one colors one

Loading…
Cancel
Save