Compare commits
2 commits
ca0679d82d
...
4ef5f14b30
Author | SHA1 | Date | |
---|---|---|---|
4ef5f14b30 | |||
869afe4b3a |
1 changed files with 11 additions and 4 deletions
|
@ -25,13 +25,13 @@ in
|
||||||
|
|
||||||
vim.opt = {
|
vim.opt = {
|
||||||
list = true;
|
list = true;
|
||||||
formatoptions = "tcroqwanljp";
|
formatoptions = "croqanlj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buffer.filetype = {
|
buffer.filetype = {
|
||||||
python-options = {
|
text-options = {
|
||||||
pattern = [ "python" ];
|
pattern = [ "txt" "markdown" "mail" "man" ];
|
||||||
opt = { formatoptions = "croqwaljp"; } // mkLineLimiterOpts 90;
|
opt = { formatoptions = "tcroqwanjp"; };
|
||||||
};
|
};
|
||||||
} // lib.listToAttrs [
|
} // lib.listToAttrs [
|
||||||
(mkLineLimiterGroup {
|
(mkLineLimiterGroup {
|
||||||
|
@ -40,10 +40,17 @@ in
|
||||||
"nix"
|
"nix"
|
||||||
"javascript,javascriptreact"
|
"javascript,javascriptreact"
|
||||||
"typescript,typescriptreact"
|
"typescript,typescriptreact"
|
||||||
|
"vue"
|
||||||
"rust"
|
"rust"
|
||||||
"haskell"
|
"haskell"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
|
(mkLineLimiterGroup {
|
||||||
|
limit = 90;
|
||||||
|
pattern = [
|
||||||
|
"python"
|
||||||
|
];
|
||||||
|
})
|
||||||
(mkLineLimiterGroup {
|
(mkLineLimiterGroup {
|
||||||
limit = 80;
|
limit = 80;
|
||||||
pattern = [
|
pattern = [
|
||||||
|
|
Loading…
Reference in a new issue