You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/fish.lua

13 lines
287 B
Lua

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,
}