Zane Bartlett

Working on Nvim Config


test

Read on GitHub

Notes #

Setting up #

  1. Install neovim if you haven't already. I recommend the appimage, makes updating really easy.
    • You may need to run sudo add-apt-repository universe sudo apt install libfuse2
  2. Clone repo into ~/.config
  3. Get a Patch Font from NerdFonts set up, this is for the barbar plugin as it uses icons in its tabs.
    • You can watch the video below for more detailed instructions, but a quick walkthrough here -
      • A patch font is basically a wide variety of glyphs all set to a certain font. If you're not picky download "Hack Nerd Font" here. It's a popular and what I used. NOTE: There is a way to install a smaller file here, but I could NOT get this to work following the instructions. If you'd like the file to be smaller and more specific, try that.
      • Unzip the file and move it to a spot your system can see it. For Ubuntu, you can make a directory called "fonts" under ~/.local/share, so mkdir ~/.local/share/fonts, and put the unzipped folder there.
      • Set your terminal to use the custom font. For the GNOME terminal I found it under preferences/profiles/text. Select "custom font" and choose whatever patch font you downloaded. You may need to restart your terminal to find it if you had it open while you moved the unzipped folder.
    • This video was what I used
  4. Get Black set up
  5. With nvim open run :PackerSync
  6. Get coc-pyright set up
    • For python - With neovim open, run :CocInstall coc-pyright
    • Full guide
  7. Assuming you're using nvim appimage, and it's in ~/.local/share/applications/, here's a couple nice bash aliases. With this you can run nvim with "v". Then with "V", you can run nvim, open your file explorer, and terminal all at once. Add the below to your .bashrc. If you're unfamiliar with .bashrc read more here, but it's just the bash configuration file, like how the init.lua file is the nvim configuration file to nvim.
alias v='~/.local/share/applications/nvim.appimage'
alias V='~/.local/share/applications/nvim.appimage -c ":Lexplore|wincmd l|10split|terminal"'

Sources used (very non-exhaustive) #