Skip to content

Commit

Permalink
misc/wrapRc: switch to XDG compliant path resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 2, 2024
1 parent c359761 commit a2fa675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrappers/modules/output.nix
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ in {

extraConfigLuaPre = lib.optionalString config.wrapRc ''
-- Ignore the user lua configuration
vim.opt.runtimepath:remove(vim.fn.expand('~/.config/nvim'))
vim.opt.packpath:remove(vim.fn.expand('~/.local/share/nvim/site'))
vim.opt.runtimepath:remove(vim.fn.stdpath('config')) -- ~/.config/nvim
vim.opt.runtimepath:remove(vim.fn.stdpath('data') .. "/site") -- ~/.local/share/nvim/site
'';

extraPlugins =
Expand Down

0 comments on commit a2fa675

Please sign in to comment.