Created
March 7, 2019 20:16
-
-
Save twilson63/691b88c223ad55e720b809be12e54f90 to your computer and use it in GitHub Desktop.
my vimrc file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.vim/plugged') | |
Plug 'pangloss/vim-javascript' | |
Plug 'mxw/vim-jsx' | |
Plug 'drewtempelmeyer/palenight.vim' | |
Plug 'jxnblk/vim-mdx-js' | |
call plug#end() | |
set background=dark | |
colorscheme palenight | |
filetype plugin indent on | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
au BufReadPost *.svelte set syntax=html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment