Skip to content

Instantly share code, notes, and snippets.

@174n
Last active March 15, 2019 16:48
Show Gist options
  • Save 174n/f92e99d6f1ec3f03b037ec0d3b81fe22 to your computer and use it in GitHub Desktop.
Save 174n/f92e99d6f1ec3f03b037ec0d3b81fe22 to your computer and use it in GitHub Desktop.
Terminal IDE

IDE in terminal

Fonts

Nerdfonts: https://nerdfonts.com/

mkdir -p ~/.local/share/fonts && \
cd ~/.local/share/fonts && curl -fLo "Fura Code Regular Nerd Font Complete.otf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/FiraCode/Regular/complete/Fura%20Code%20Regular%20Nerd%20Font%20Complete.otf?raw=true

Use gnome-tweak-tool to change font

Neovim

Install package manager first: https://github.com/junegunn/vim-plug

curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Add config

mkdir ~/.config/nvim && \
echo "call plug#begin('~/.vim/plugged')\ncall plug#end()" > ~/.config/nvim/init.vim

Reload config: :so %

Plugins

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