Add devicons

This commit is contained in:
Yash Karandikar 2022-04-05 15:19:46 -05:00
parent 790fc8e498
commit f2f5d7207a
Signed by: karx
GPG key ID: A794DA2529474BA5

2
.vimrc
View file

@ -5,6 +5,7 @@ set softtabstop=4
set showtabline=2 set showtabline=2
set number set number
set expandtab set expandtab
set encoding=UTF-8
" install vim-plug if it's not installed already " install vim-plug if it's not installed already
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim' let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
@ -17,6 +18,7 @@ endif
call plug#begin() call plug#begin()
Plug 'ycm-core/YouCompleteMe' Plug 'ycm-core/YouCompleteMe'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'ryanoasis/vim-devicons'
call plug#end() call plug#end()
" Keybindings for tab management " Keybindings for tab management