Skip to content

Instantly share code, notes, and snippets.

@hew
Last active May 16, 2017 01:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hew/ce15664bd7f725d968e37863ee57e30e to your computer and use it in GitHub Desktop.
Save hew/ce15664bd7f725d968e37863ee57e30e to your computer and use it in GitHub Desktop.
Fish Shell Install

Install the Fish Shell

Primary Stuff

  • git clone git@github.com:hew/hotfiles ~/.config
  • curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisher
  • fisher install brandonweiss/pure.fish
  • ln -s ~/.config/nvim/.esformatter ~/.esformatter
  • git config --global core.excludesfile '~/.config/git/ignore'

Plugins I usually use:

Color Stuff

e ~/.config/nvim/xterm-256color-italic.terminfo

let &t_ZH="\e[3m"
let &t_ZR="\e[23m"
#
# Install:
#
#   tic xterm-256color-italic.terminfo
#
# Usage:
#
#   export TERM=xterm-256color-italic
#
xterm-256color-italic|xterm with 256 colors and italic,
	sitm=\E[3m, ritm=\E[23m,
	use=xterm-256color,

(in init.vim)

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