14 lines
273 B
Lua
14 lines
273 B
Lua
-- example of a project specific nvim configuration file using :exrc
|
|
|
|
local conform = require 'conform';
|
|
|
|
conform.setup {
|
|
formatters_by_ft = {
|
|
python = { 'isort', 'black' },
|
|
javascript = { 'prettier', },
|
|
},
|
|
|
|
format_on_save = {
|
|
lsp_format = 'never',
|
|
}
|
|
}
|