Skip to content

Instantly share code, notes, and snippets.

@mttaggart
Last active January 30, 2023 14:21
Show Gist options
  • Save mttaggart/b788e618eddca83a9c033572bfdf3c76 to your computer and use it in GitHub Desktop.
Save mttaggart/b788e618eddca83a9c033572bfdf3c76 to your computer and use it in GitHub Desktop.
Vimrc
set nu
set wrap linebreak nolist
set clipboard=unnamedplus
set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab
set encoding=utf-8
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
" Make sure you use single quotes
Plug 'flazz/vim-colorschemes'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'raimondi/delimitmate'
Plug 'jparise/vim-graphql'
Plug 'valloric/youcompleteme'
Plug 'elixir-lang/vim-elixir'
Plug 'chesleytan/wordcount.vim'
Plug 'pangloss/vim-javascript'
Plug 'scrooloose/syntastic'
Plug 'airblade/vim-gitgutter'
Plug 'zah/nim.vim'
Plug 'scrooloose/nerdtree'
Plug 'rust-lang/rust.vim'
Plug 'elmcast/elm-vim'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'kannokanno/previm'
Plug 'reedes/vim-pencil'
Plug 'scrooloose/nerdcommenter'
Plug 'vim-scripts/fountain.vim'
Plug 'vim-scripts/fountainflow.vim'
Plug 'dracula/vim', { 'as': 'dracula' }
" Initialize plugin system
call plug#end()
" Previm command for Mac
" let g:previm_open_cmd = 'open -a Google Chrome'
" Previm command for Linux
let g:previm_open_cmd = '/usr/bin/vivaldi'
" Color Scheme
" colorscheme nightsky
colorscheme dracula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment