Skip to content

Instantly share code, notes, and snippets.

@ZXZhIGVsZmll
Last active September 2, 2022 18:08
Show Gist options
  • Save ZXZhIGVsZmll/3cfef319086b9a6d9583ea282c4d7908 to your computer and use it in GitHub Desktop.
Save ZXZhIGVsZmll/3cfef319086b9a6d9583ea282c4d7908 to your computer and use it in GitHub Desktop.
" set
set number
set mouse=a
set bg=dark
" vim-plug
call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
" lean & mean status/tabline for vim that's light as air
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Retro groove color scheme for Vim
Plug 'morhetz/gruvbox'
" Initialize plugin system
" - Automatically executes `filetype plugin indent on` and `syntax enable`.
call plug#end()
" You can revert the settings after the call like so:
" filetype indent off " Disable file-type-specific indentation
" syntax off " Disable syntax highlighting
" gruvbox
autocmd vimenter * ++nested colorscheme gruvbox
" airline
let g:airline_theme = 'bubblegum'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment