Skip to content

Instantly share code, notes, and snippets.

@cho0h5
Last active March 12, 2022 13:16
Show Gist options
  • Save cho0h5/8c0a450e39d81ef3742b47ffe2367b5e to your computer and use it in GitHub Desktop.
Save cho0h5/8c0a450e39d81ef3742b47ffe2367b5e to your computer and use it in GitHub Desktop.
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>
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