summaryrefslogtreecommitdiffstats
path: root/nvim/lua/options.lua
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2025-09-07 17:52:09 +0200
committerChristoph Schlosser <christoph@linux.com>2025-09-07 17:52:19 +0200
commitaf742566f6b950a2d1e861d1ed0c659148cc5ce4 (patch)
tree5b4fc049fa342e118f6c246d5556b7fb3cf2d7b6 /nvim/lua/options.lua
parenta337aec8e39c95cbf37584d9b53d80790349d0bd (diff)
downloaddots-af742566f6b950a2d1e861d1ed0c659148cc5ce4.tar.gz
nvim: Update lockfile and reference to fish through PATH instead of abs location
Diffstat (limited to 'nvim/lua/options.lua')
-rw-r--r--nvim/lua/options.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua
index f9bc531..7976515 100644
--- a/nvim/lua/options.lua
+++ b/nvim/lua/options.lua
@@ -71,5 +71,5 @@ vim.opt.ts = 2
vim.opt.sts = 2
vim.opt.sw = 2
vim.opt.expandtab = true
-vim.opt.shell = vim.fn.expand '$HOME/.local/bin/fish'
+vim.opt.shell = 'fish'
-- vim: ts=2 sts=2 sw=2 et