Skip to content

Instantly share code, notes, and snippets.

@hew
Last active May 16, 2017 01:26
Show Gist options
  • Save hew/44b9297f9038f95fc33ee8b791645988 to your computer and use it in GitHub Desktop.
Save hew/44b9297f9038f95fc33ee8b791645988 to your computer and use it in GitHub Desktop.
Instructions for How to Get Started with Vim (June 2016)

Instructions for How to Get Started with Vim (June 2016)

Primary Installation Instructions

  • brew install neovim
  • brew install python3
  • brew linkapps
  • pip3 install --upgrade pip setuptools
  • pip3 install neovim
  • touch ~/.config/nvim/init.vim
  • cat 'let g:python3_host_prog = '/usr/local/bin/python3' >> ~/.config/nvim/init.vim
  • nvim
  • :UpdateRemotePlugins

Operator Mono Italics hack

In init.vim

    hi htmlArg gui=italic
    hi htmlArg cterm=italic
    hi Comment gui=italic
    hi Comment cterm=italic
    hi Type    gui=italic
    hi Type    cterm=italic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment