Commit 50735e0 1 parent fc25477 commit 50735e0 Copy full SHA for 50735e0
File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
vim .api .nvim_create_autocmd (" FileType" , {
2
2
callback = function ()
3
- local filetypes = { " gitcommit" , " markdown" }
4
- for _ , f in ipairs (filetypes ) do
3
+ local filetypes_wo_autocomplete = {
4
+ " NeogitCommitMessage" ,
5
+ " TelescopePrompt" ,
6
+ " gitcommit" ,
7
+ " markdown" ,
8
+ }
9
+ for _ , f in ipairs (filetypes_wo_autocomplete ) do
5
10
if vim .bo .filetype == f then
6
11
require (" cmp" ).setup .filetype (f , {
7
12
enabled = false ,
Original file line number Diff line number Diff line change 6
6
formatters_by_ft = {
7
7
lua = { " stylua" },
8
8
-- Conform will run multiple formatters sequentially
9
- sh = { " shellcheck" },
10
9
python = { " isort" , " ruff_format" },
10
+ sh = { " shellcheck" },
11
11
terraform = { " terraform_fmt" },
12
12
},
13
13
format_on_save = {
You can’t perform that action at this time.
0 commit comments