Skip to content

Instantly share code, notes, and snippets.

@chfle
Last active July 4, 2021 07:39
Show Gist options
  • Save chfle/b3ef5b1483e06e1be6b56e920a30389c to your computer and use it in GitHub Desktop.
Save chfle/b3ef5b1483e06e1be6b56e920a30389c to your computer and use it in GitHub Desktop.
packadd! dracula
syntax enable
colorscheme dracula
"=========== Settings ==========="
"Line number"
set nonu
"Vim Like numbers"
set relativenumber
"show commands"
set showcmd
"indent"
:set shiftwidth=2
:set autoindent
:set smartindent
"============ Plugins ==========="
" Specify a directory for plugins
" - For Neovim: stdpath('data') . '/plugged'
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
"Vim statusbar"
Plug 'vim-airline/vim-airline'
"Search
Plug 'inkarkat/vim-searchhighlighting'
" Initialize plugin system
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment