first try

This commit is contained in:
twoneis 2023-11-12 19:38:02 +01:00
parent 9a43edcd92
commit 3f28ff67e3
26 changed files with 664 additions and 33 deletions
modules/home/editor

View file

@ -0,0 +1,26 @@
{
theme = "rosepine";
editor = {
line-number = "relative";
cursorline = true;
auto-format = true;
soft-wrap.enable = true;
whitespace.render = "all";
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
};
keys.normal = {
h = "move_char_left";
t = "move_line_up";
n = "move_line_down";
s = "move_char_right";
};
}