Skip to content

Instantly share code, notes, and snippets.

@palashahuja
Last active February 24, 2020 18:47
Show Gist options
  • Save palashahuja/0133dc2d9375471ad95d9ff678c5b15b to your computer and use it in GitHub Desktop.
Save palashahuja/0133dc2d9375471ad95d9ff678c5b15b to your computer and use it in GitHub Desktop.
minimal vimrc setup
" - For Neovim: stdpath('data') . '/plugged'
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'jceb/vim-orgmode'
Plug 'tpope/vim-speeddating'
call plug#end()
set relativenumber
colorscheme dracula
@palashahuja
Copy link
Author

This is for wherever I want to use vim. I need the org mode to see the highlighting anywhere I want

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment