2022-12-11 11:07:30 -05:00
|
|
|
syntax enable
|
|
|
|
filetype plugin indent on
|
|
|
|
|
|
|
|
set smartindent
|
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set expandtab
|
|
|
|
set copyindent
|
|
|
|
|
|
|
|
set number
|
|
|
|
|
2023-02-08 11:16:16 -05:00
|
|
|
set laststatus=2
|
2023-02-08 23:54:12 -05:00
|
|
|
|
|
|
|
nnoremap <C-g> :NERDTreeToggle<CR>
|
2023-02-08 11:16:16 -05:00
|
|
|
"
|
|
|
|
call plug#begin(expand('~/.vim/plugged'))
|
|
|
|
" Color Scheme
|
|
|
|
Plug 'arcticicestudio/nord-vim'
|
|
|
|
Plug 'itchyny/lightline.vim'
|
|
|
|
Plug 'ap/vim-css-color'
|
|
|
|
Plug 'ycm-core/YouCompleteMe'
|
|
|
|
Plug 'preservim/nerdtree'
|
2023-02-08 23:20:18 -05:00
|
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
Plug 'tpope/vim-surround'
|
2023-02-08 11:16:16 -05:00
|
|
|
call plug#end()
|
2022-12-11 11:07:30 -05:00
|
|
|
|
2023-02-08 11:16:16 -05:00
|
|
|
colorscheme nord
|
|
|
|
let g:lightline = {
|
|
|
|
\ 'colorscheme': 'nord',
|
|
|
|
\ }
|