We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
My nvim config
There was an error while loading.Please reload this page.
git clone git@github.com:joselo/nvim.git ~/.config/nvim
Create symbolic links to fonts and kitty
ln -s ~/.config/nvim/fonts ~/.local/shareln -s ~/.config/nvim/kitty ~/.config
Installripgrep
ripgrep
sudo apt install ripgrep
Installzf
zf
$ mkdir -p ~/.local/bin
Add the~/.local/bin path directory to the~/.zshrc file.
~/.local/bin
~/.zshrc
export PATH="$PATH:$HOME/.local/bin"
Add this function to the .zhrc
# Toggle kitty themelight_theme() {# Set an environment variableexport THEME="light"# Apply the kitty color scheme kitty @ set-colors -a"$HOME/.config/nvim/kitty/themes/papercolor-light.conf" kitty @ set-font-size 12}dark_theme() {# Set an environment variableexport THEME="dark"# Apply the kitty color scheme kitty @ set-colors -a"$HOME/.config/nvim/kitty/themes/papercolor-dark.conf" kitty @ set-font-size 12}if [[-z"$THEME" ]];then dark_themefialias set-dark="dark_theme"alias set-light="light_theme"
Then in your terminal:
$ light_theme $ dark_theme