Compare commits
No commits in common. "eb40e0ddb6f2b306cce645730e38d9986c7b79cd" and "50df3f2d77e68b07265c7e83b5e5f502efb5c65f" have entirely different histories.
eb40e0ddb6
...
50df3f2d77
1 changed files with 5 additions and 2 deletions
|
@ -11,7 +11,7 @@ let
|
||||||
inherit pattern;
|
inherit pattern;
|
||||||
opt = {
|
opt = {
|
||||||
colorcolumn = toString limit;
|
colorcolumn = toString limit;
|
||||||
textwidth = limit - 1;
|
textwidth = limit;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
@ -23,9 +23,12 @@ in
|
||||||
|
|
||||||
vim.opt = {
|
vim.opt = {
|
||||||
list = true;
|
list = true;
|
||||||
|
formatexpr = "neoformat#Neoformat(0, '', v:lnum, v:lnum + v:count)";
|
||||||
};
|
};
|
||||||
|
|
||||||
buffer.filetype = lib.listToAttrs [
|
buffer.filetype = {
|
||||||
|
nix.opt.formatexpr = "neoformat#Neoformat(0, '', 0, 99999)";
|
||||||
|
} // lib.listToAttrs [
|
||||||
(mkLineLimiterGroup {
|
(mkLineLimiterGroup {
|
||||||
limit = 101;
|
limit = 101;
|
||||||
pattern = [
|
pattern = [
|
||||||
|
|
Loading…
Reference in a new issue