Replace nerdrtree with neotree

This commit is contained in:
2023-03-12 11:43:35 +01:00
parent a1d47f4968
commit 00d748b98b
3 changed files with 8 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
set background=dark set background=dark
set termguicolors set termguicolors
set t_Co=256 set t_Co=256
colorscheme gloom-vim colorscheme shades_of_purple

View File

@@ -4,8 +4,8 @@
noremap <F8> :bnext <CR> noremap <F8> :bnext <CR>
noremap <S-F8> :bprevious <CR> noremap <S-F8> :bprevious <CR>
" Define a shortcut to turn on NERDTree " Define a shortcut to toggle the Neotree
map <C-n> :NERDTreeToggle <CR> map <C-n> :NeoTreeShowToggle <CR>
" Copy to clipboard with Ctrl+C when in visual mode " Copy to clipboard with Ctrl+C when in visual mode
vnoremap <C-c> "+y vnoremap <C-c> "+y

View File

@@ -1,11 +1,14 @@
" Specify a directory for plugins " Specify a directory for plugins
call plug#begin(stdpath('data') . '/plugged') call plug#begin(stdpath('data') . '/plugged')
" Colourthemes " Colourthemes
Plug 'balanceiskey/gloom-vim' Plug 'Rigellute/shades-of-purple.vim'
" Editor extensions " Editor extensions
Plug 'neomake/neomake' Plug 'neomake/neomake'
Plug 'preservim/nerdtree' Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-tree/nvim-web-devicons'
Plug 'MunifTanjim/nui.nvim'
Plug 'nvim-neo-tree/neo-tree.nvim'
Plug 'zhaocai/timestamp.vim' Plug 'zhaocai/timestamp.vim'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'bling/vim-bufferline' Plug 'bling/vim-bufferline'