Last active
March 12, 2022 13:16
-
-
Save cho0h5/8c0a450e39d81ef3742b47ffe2367b5e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged') | |
Plug 'vim-airline/vim-airline' | |
Plug 'tpope/vim-fugitive' | |
Plug 'joshdick/onedark.vim' | |
Plug 'scrooloose/nerdtree' | |
call plug#end() | |
set nu | |
set shiftwidth=4 | |
set tabstop=4 | |
set expandtab | |
set autoindent | |
set smartindent | |
set mouse=a | |
colorscheme onedark | |
nnoremap <F2> :NERDTreeToggle<CR> |
This file contains hidden or 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
call plug#begin('~/.vim/plugged') | |
Plug 'mhartington/oceanic-next' | |
call plug#end() | |
set nu | |
set shiftwidth=4 | |
set tabstop=4 | |
set expandtab | |
set autoindent | |
set smartindent | |
colo OceanicNext | |
set background=dark |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment