1
0
Fork 0
dotfiles/home/config/nvim/nifoc/formatting.fnl

44 lines
1.4 KiB
Plaintext
Raw Normal View History

(let [mod {}
b vim.b
api vim.api
2023-07-23 20:40:54 +00:00
set-bufvar vim.api.nvim_buf_set_var
2023-10-09 13:05:57 +00:00
conform (require :conform)]
(fn mod.setup []
2023-10-09 13:05:57 +00:00
(let [usercmd api.nvim_create_user_command
augroup (api.nvim_create_augroup :NifocFormatting {:clear true})
aucmd api.nvim_create_autocmd]
(usercmd :FormatDisableBuffer mod.disable-for-buffer
{:desc "Disable Formatting for the current buffer"})
(usercmd :FormatEnableBuffer mod.enable-for-buffer
2023-07-23 20:40:54 +00:00
{:desc "Enable Formatting for the current buffer"})
2023-10-09 13:05:57 +00:00
(aucmd :BufWritePre
{:callback mod.maybe-format-buffer
:group augroup
:desc "Run Formatter before saving"})))
2023-07-13 10:02:14 +00:00
2023-07-19 12:48:38 +00:00
(fn has-formatter-config? [ft]
2023-10-09 13:05:57 +00:00
(let [fts conform.formatters_by_ft]
2023-07-19 12:48:38 +00:00
(not= (. fts ft) nil)))
2023-05-01 21:09:15 +00:00
2023-07-23 20:40:54 +00:00
(fn format-with-lsp? [ft]
(let [fts [:elixir]]
(vim.list_contains fts ft)))
(fn mod.enable-for-buffer []
(set-bufvar 0 :nifoc_formatter_disabled 0))
(fn mod.disable-for-buffer []
(set-bufvar 0 :nifoc_formatter_disabled 1))
2022-05-31 13:46:32 +00:00
(fn mod.active? []
(let [ft vim.bo.filetype]
(if (= b.nifoc_formatter_disabled 1) false
2023-10-09 13:05:57 +00:00
(or (has-formatter-config? ft) (format-with-lsp? ft)))))
2023-07-23 20:40:54 +00:00
(fn mod.maybe-format-buffer []
(let [ft vim.bo.filetype]
(if (= b.nifoc_formatter_disabled 1) nil
2023-10-09 13:05:57 +00:00
(conform.format {:lsp_fallback (format-with-lsp? ft)}))))
2023-07-23 20:40:54 +00:00
mod)