restructure
This commit is contained in:
parent
d7bd686648
commit
eecb15a4ec
50 changed files with 281 additions and 564 deletions
29
modules/home/utils/helix-config.nix
Normal file
29
modules/home/utils/helix-config.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
theme = "rose_pine";
|
||||
|
||||
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";
|
||||
|
||||
C-n = "search_next";
|
||||
C-t = "search_prev";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue