Created
October 29, 2021 15:53
-
-
Save CarterLi/a45ffbf15f04bc4cf8db40a3d2fe2c82 to your computer and use it in GitHub Desktop.
nvimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if &shell =~# 'fish$' | |
set shell=sh | |
endif | |
set termguicolors | |
call plug#begin('~/.vim/plugged') | |
Plug 'tpope/vim-sensible' | |
Plug 'mhinz/vim-startify' | |
Plug 'lambdalisue/battery.vim' | |
Plug 'tpope/vim-fugitive' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'nvim-lua/plenary.nvim' | |
Plug 'lewis6991/gitsigns.nvim' | |
Plug 'rhysd/committia.vim' | |
Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'dag/vim-fish' | |
Plug 'chrisbra/csv.vim' | |
Plug 'neoclide/coc-git' | |
Plug 'bling/vim-bufferline' | |
Plug 'vim-airline/vim-airline' | |
call plug#end() | |
let g:airline_powerline_fonts = 1 | |
set updatetime=100 | |
set nu | |
set laststatus=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment