diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-04-25 20:16:22 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-04-25 20:16:22 +0200 |
| commit | 9ff58cf3e41881a8cadb54b3f2862d846266d1a9 (patch) | |
| tree | 9aa7e9da42734f33bb7982f7641f20340e9c0cd6 /nvim | |
| parent | 343cbcc42d329b24a3ef03d31035dc7c1b708c5b (diff) | |
| download | dots-9ff58cf3e41881a8cadb54b3f2862d846266d1a9.tar.gz | |
nvim: Set default shell to user local fish
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/lua/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index 5267750..f9bc531 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -71,4 +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: ts=2 sts=2 sw=2 et |