My personal NixOS configuration
Find a file
2022-11-02 09:12:57 +00:00
fonts Reorganise fonts, add NerdFont symbols only for kitty 2022-09-27 10:00:10 +01:00
lua Add lua LSP 2022-11-02 09:05:01 +00:00
true_colour_tests Add checks for true colour support in terminal (visual only) 2021-02-22 09:05:59 +00:00
.git-completion.bash Add PS1 updating script 2022-07-27 08:56:25 +01:00
.git-prompt.sh Add PS1 updating script 2022-07-27 08:56:25 +01:00
.gitignore Remove nerdfont from tabby 2022-11-01 07:34:39 +00:00
init.lua Add listchars to lua 2022-11-02 09:12:57 +00:00
install.sh Remove tabby plugin 2022-11-02 08:52:48 +00:00
README.md Update README 2022-11-01 16:57:32 +00:00
tmux.conf Add kitty to tmux config 2022-08-24 14:48:58 +01:00

Vim config

Personal configuration and plugins for Vim

Installing neovim AppImage

curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
mv nvim.appimage "$HOME/bin/."
ln -s "$HOME/bin/nvim.appimage" "$HOME/bin/nvim"  # Optional to avoid extension in commands
# ./nvim.appimage

(Alternate) Installing on Ubuntu

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
sudo apt-get install neovim
sudo apt-get install python-dev python-pip python3-dev python3-pip

Linking setup file

mkdir -p $HOME/.config/nvim/
ln -s $(readlink -f init.lua) $HOME/.config/nvim/init.lua
ln -s $(readlink -f lua) $HOME/.config/nvim/lua

Installing Packer plugin manager

git clone --depth 1 https://github.com/wbthomason/packer.nvim\
 $HOME/.local/share/nvim/site/pack/packer/start/packer.nvim

Plugin definitions are in plugins.lua, inside vim run :PackerSync to install plugins

Enabling python support

pyenv virtualenv neovim3  # Assumes working pyenv
pyenv activate neovim3
pip install -U pip setuptools wheel
pip install -U pynvim "python-lsp-server[all]" fortls pylsp-mypy python-lsp-black
pyenv deactivate

From vim documentation