added rnote

This commit is contained in:
twoneis 2023-11-13 22:43:32 +01:00
parent caedf282a4
commit 09d6dc9b0a
3 changed files with 6 additions and 22 deletions

View file

@ -10,6 +10,7 @@
./gdb ./gdb
./git ./git
./media ./media
./notes
./terminal ./terminal
./utils ./utils
]; ];

View file

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

View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
rnote
];
}