Skip to content

Instantly share code, notes, and snippets.

@dortamiguel
Last active February 23, 2018 09:19
Show Gist options
  • Save dortamiguel/653cc617669109110a42c58ba189eff7 to your computer and use it in GitHub Desktop.
Save dortamiguel/653cc617669109110a42c58ba189eff7 to your computer and use it in GitHub Desktop.

Install

brew install vim
mkdir ~/.vim_tmp

Config

syntax on
set showmatch
set mouse=a
set number
set cursorline
set lazyredraw
set wildmenu
set incsearch
set hlsearch

set swapfile
set dir=~/.vim_tmp

Imporant

  • Linter
  • Sidebar
  • Save on lost focus
  • Multiple cursors
  • Copy, cut and paste shortcuts
  • Gitsavvy like
  • Search and replace in same file
  • Fuzzy search files
  • Fast file search

Normal

  • ES6 js syntax higlighting
  • Minimap
  • Themes
  • Git gutter
  • Git coloring on sidebar
  • Managing "projects"
  • Remove whitespace on save
  • Auto tab on enter
  • Autoread
  • File icons

Low

  • Hide .gitignore files
  • Color highlight
  • Sass, scss, css autocoplete
  • Sass, scss, css linter
  • Ruler
  • Rainbow parentheses
  • Git blame
  • Import cost
  • Go tod definition
  • Autocomplete with opened files
  • EditorConfig support
  • Clickable URLs
  • SyncedSideBar
  • Single Trailing Newline
  • Smooth scrolling
  • Highligh current line

References

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