This commit is contained in:
Antoine Phan
2024-01-17 23:33:14 -05:00
parent 5a24ecc802
commit ee90d9cc27
28 changed files with 2453 additions and 1 deletions

22
.config/nvim/init.vim Normal file
View File

@@ -0,0 +1,22 @@
set number
filetype plugin indent on
set tabstop=2
set shiftwidth=2
set expandtab
set noshowmode
call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'ap/vim-css-color'
Plug 'itchyny/lightline.vim'
Plug 'preservim/tagbar'
Plug 'preservim/nerdtree'
Plug 'tpope/vim-surround'
Plug 'airblade/vim-gitgutter'
Plug 'preservim/nerdtree'
Plug 'ryanoasis/vim-devicons'
call plug#end()
map <C-o> :NERDTreeToggle<CR>