helix: change cursor shape and add a ruler

This commit is contained in:
2025-12-06 20:41:14 +03:00
parent 80f25abdd5
commit f45ab786f9
+8 -1
View File
@@ -6,7 +6,10 @@
settings = { settings = {
# theme = "catppuccin-mocha"; # theme = "catppuccin-mocha";
editor = { editor = {
rulers = [ 81 ];
insert-final-newline = false; insert-final-newline = false;
indent-guides.render = true;
whitespace.render = { whitespace.render = {
space = "all"; space = "all";
tab = "all"; tab = "all";
@@ -15,7 +18,11 @@
newline = "none"; newline = "none";
}; };
indent-guides.render = true; cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
}; };
}; };
}; };