From 13f07b32b0bb8ab1774e7e32344a4537dd957998 Mon Sep 17 00:00:00 2001 From: chloe caruso Date: Mon, 18 Aug 2025 00:25:46 -0700 Subject: [PATCH] clover: more treats --- users/chloe/home.nix | 1 + users/chloe/paperback/configuration.nix | 5 ++- users/chloe/paperback/home.nix | 2 +- users/chloe/vim.nix | 47 +------------------------ 4 files changed, 7 insertions(+), 48 deletions(-) diff --git a/users/chloe/home.nix b/users/chloe/home.nix index b46fbf4..3fddc20 100644 --- a/users/chloe/home.nix +++ b/users/chloe/home.nix @@ -21,6 +21,7 @@ in # packages to install for desktop environments (non-server) desktop = [ git-town + lazygit ]; # packages to install on all servers server = [ ]; diff --git a/users/chloe/paperback/configuration.nix b/users/chloe/paperback/configuration.nix index 6fc73ce..3d94126 100644 --- a/users/chloe/paperback/configuration.nix +++ b/users/chloe/paperback/configuration.nix @@ -1,6 +1,9 @@ _: { homebrew = { enable = true; - casks = [ "eloston-chromium" ]; + casks = [ + "eloston-chromium" + "db-browser-for-sqlite" + ]; }; } diff --git a/users/chloe/paperback/home.nix b/users/chloe/paperback/home.nix index e2ce2a7..711130f 100644 --- a/users/chloe/paperback/home.nix +++ b/users/chloe/paperback/home.nix @@ -4,7 +4,6 @@ # most of these are needed for my work environment. programs = { bun.enable = true; - zed-editor.enable = true; zsh.profileExtra = '' _bun() { local context state line @@ -14,6 +13,7 @@ }; home.packages = with pkgs; [ doppler + deno nodejs_22 rustup typescript diff --git a/users/chloe/vim.nix b/users/chloe/vim.nix index 4dfae25..84bac23 100644 --- a/users/chloe/vim.nix +++ b/users/chloe/vim.nix @@ -5,7 +5,7 @@ _: { }; git = { gitsigns.setupOpts = { - current_line_blame = true; + current_line_blame = false; current_line_blame_opts = { virt_text = true; virt_text_pos = "right_align"; @@ -16,50 +16,5 @@ _: { }; }; }; - autocomplete.blink-cmp = { - enable = true; - mappings = { - close = null; - complete = null; - confirm = null; - next = null; - previous = null; - scrollDocsDown = null; - scrollDocsUp = null; - }; - - setupOpts = { - keymap = { - preset = "super-tab"; - }; - completion = { - ghost_text.enabled = false; - list.selection.preselect = true; - trigger = { - show_in_snippet = true; - }; - accept.auto_brackets.enabled = true; - }; - signature = { - enabled = true; - }; - }; - }; - - keymaps = - let - mkKeymap = mode: key: action: desc: { - inherit mode; - inherit key action desc; - }; - n = mkKeymap "n"; # normal mode - in - [ - # UI - (n "e" ":lua require('snacks').explorer()" "File Explorer") - # Find Files - (n "" ":lua require('snacks').picker.smart()" "Smart Find Files") - (n "f" ":lua require('snacks').picker.grep()" "Grep Files") - ]; }; }