config-files/.vimrc

27 lines
443 B
VimL
Raw Normal View History

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
"
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'
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',
\ }