Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(nvim): remove old colorscheme scripts

-10
-7
config/nvim/lua/colorscheme.lua
··· 1 - local colorscheme = 'monokai_pro' 2 - 3 - local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) 4 - if not is_ok then 5 - vim.notify('colorscheme ' .. colorscheme .. ' not found!') 6 - return 7 - end
-3
config/nvim/lua/plugins/colorscheme.lua
··· 1 - return { 2 - "tanvirtin/monokai.nvim" 3 - }