From aa9b5d8e6c76cf1a6a360f363e7f890dd70509df Mon Sep 17 00:00:00 2001 From: Thomas Alcala Schneider Date: Sun, 7 May 2023 23:52:01 +0200 Subject: [PATCH] feat: add fish support --- lua/custom/plugins/fish.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/custom/plugins/fish.lua diff --git a/lua/custom/plugins/fish.lua b/lua/custom/plugins/fish.lua new file mode 100644 index 00000000..bd6d38a9 --- /dev/null +++ b/lua/custom/plugins/fish.lua @@ -0,0 +1,12 @@ +return { + 'dag/vim-fish', + ft = 'fish', + config = function() + vim.bo.filetype = 'fish' + vim.cmd 'compiler fish' + vim.bo.textwidth = 79 + -- vim.bo.foldmethod = 'expr' + -- vim.bo.foldexpr = 'nvim_treesitter#foldexpr()' + -- vim.cmd 'setlocal foldlevelstart=1' + end, +}