diff options
author | Chris <[email protected]> | 2021-07-26 14:32:29 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-26 14:32:29 -0400 |
commit | 4d68c6eb78bc1376be5e7fb5c3303001eb425228 (patch) | |
tree | 14d7af71dc161dc35923cfc81cee1f632e58a507 /lua/default-config.lua | |
parent | e5bd25b1f3d44395e522b2455c058b15f2bbe76f (diff) |
don't break for .fish
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r-- | lua/default-config.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index c129c419..6509c7da 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -287,6 +287,20 @@ lvim.lang = { }, }, emmet = { active = false }, + fish = { + formatter = { + exe = "", + args = {}, + }, + linters = {}, + lsp = { + provider = "", + setup = { + on_attach = common_on_attach, + capabilities = common_capabilities, + }, + }, + }, go = { formatter = { exe = "gofmt", |