syncthing folders and various other things

This commit is contained in:
Aria Nolan 2024-04-07 21:27:00 -04:00
parent 885a0c05f9
commit df585dccad
4 changed files with 19 additions and 8 deletions

View file

@ -119,8 +119,16 @@
id = "homework"; id = "homework";
devices = ["bicep" "jwst" "echo"]; devices = ["bicep" "jwst" "echo"];
}; };
"/data/textbooks" = { "/data/books" = {
id = "textbooks"; id = "books";
devices = ["bicep" "jwst" "echo"];
};
"/data/music" = {
id = "music";
devices = ["bicep" "jwst" "echo"];
};
"/var/lib/mpd" = {
id = "mpd state";
devices = ["bicep" "jwst" "echo"]; devices = ["bicep" "jwst" "echo"];
}; };
}; };

View file

@ -66,7 +66,7 @@
{ {
action = "<cmd>nohl<CR>"; action = "<cmd>nohl<CR>";
key = "<C-q>"; key = "<C-q>";
mode = [ "n" ]; mode = ["n"];
options = { options = {
desc = "Remove search highlighting"; desc = "Remove search highlighting";
silent = true; silent = true;
@ -75,7 +75,7 @@
{ {
action = "function() require(\"luasnip\").expand() end"; action = "function() require(\"luasnip\").expand() end";
key = "<C-L>"; key = "<C-L>";
mode = [ "i" ]; mode = ["i"];
lua = true; lua = true;
options = { options = {
desc = "Luasnip expand"; desc = "Luasnip expand";
@ -85,7 +85,7 @@
{ {
action = "function() require(\"luasnip\").jump(1) end"; action = "function() require(\"luasnip\").jump(1) end";
key = "<C-J>"; key = "<C-J>";
mode = [ "i" "s" ]; mode = ["i" "s"];
lua = true; lua = true;
options = { options = {
desc = "Luasnip jump to next"; desc = "Luasnip jump to next";
@ -95,7 +95,7 @@
{ {
action = "function() require(\"luasnip\").jump(-1) end"; action = "function() require(\"luasnip\").jump(-1) end";
key = "<C-K>"; key = "<C-K>";
mode = [ "i" "s" ]; mode = ["i" "s"];
lua = true; lua = true;
options = { options = {
desc = "Luasnip jump to previous"; desc = "Luasnip jump to previous";
@ -111,7 +111,7 @@
end end
''; '';
key = "<C-E>"; key = "<C-E>";
mode = [ "i" "s" ]; mode = ["i" "s"];
lua = true; lua = true;
options = { options = {
desc = "Luasnip change choice"; desc = "Luasnip change choice";

View file

@ -11,6 +11,10 @@
action = "diagnostics"; action = "diagnostics";
desc = "Telescope diagnostics"; desc = "Telescope diagnostics";
}; };
"<leader>f" = {
action = "fd";
desc = "Telescope find files";
};
}; };
}; };
comment = { comment = {

View file

@ -4,7 +4,6 @@
./git.nix ./git.nix
./taskwarrior.nix ./taskwarrior.nix
./firefox.nix ./firefox.nix
./vscode.nix
./fzf.nix ./fzf.nix
./tmux.nix ./tmux.nix
./tiny.nix ./tiny.nix