Skip to content

Instantly share code, notes, and snippets.

@fsiler
Created October 11, 2022 22:04
Show Gist options
  • Save fsiler/e55c34cb4c8c64f2ef836db9b40cc1f3 to your computer and use it in GitHub Desktop.
Save fsiler/e55c34cb4c8c64f2ef836db9b40cc1f3 to your computer and use it in GitHub Desktop.
Vim Config
runtime! ftplugin/man.vim
"color darkblue
syntax on
set hls ic is scs si et ts=2 sts=2 sw=2 et sr wmnu ru sbr=BR: ls=2
match error /\s\+$\|\t\|TODO\|XXX\|BUG/
set stl+=\ %{\ line2byte(line(\"$\")+1)-1\ }B\ %F%R%M\ %l:%c
noremap :W :w
noremap :Q :q
"set list listchars=tab:▸\ ,eol:¬
"set clipboard= guifont=Inconsolata\ NF:h14 """ Windows
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'mxw/vim-jsx'
Plugin 'pangloss/vim-javascript'
Plugin 'https://github.com/prettier/vim-prettier'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment