neovim: remove t and c from default formatoptions
This commit is contained in:
parent
6727763076
commit
d8302e3364
1 changed files with 2 additions and 2 deletions
|
@ -15,13 +15,13 @@ in
|
||||||
|
|
||||||
vim.opt = {
|
vim.opt = {
|
||||||
list = true;
|
list = true;
|
||||||
formatoptions = "croqnlj";
|
formatoptions = "roqnlj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buffer.filetype = {
|
buffer.filetype = {
|
||||||
text-options = {
|
text-options = {
|
||||||
pattern = [ "txt" "markdown" "mail" "man" ];
|
pattern = [ "txt" "markdown" "mail" "man" ];
|
||||||
opt = { formatoptions = "tcroqwanjp"; };
|
opt = { formatoptions = "roqwnjp"; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue