misc. mid-april update

This commit is contained in:
sloane 2024-04-24 10:11:46 -04:00
parent 54eec79da6
commit c143439956
No known key found for this signature in database
5 changed files with 20 additions and 1 deletions

View file

@ -32,6 +32,7 @@ function worktree
# Elixir projects
if test -e "mix.exs"
echo "Elixir project detected. Copying over _build and deps"
if test -d "_build"
cp -cR _build ../$dirname/
end
@ -42,6 +43,7 @@ function worktree
# typically untracked files
if test -e ".envrc"
echo "Copying over .envrc"
cp .envrc ../$dirname/
end
if test -e ".npmrc"

View file

@ -5,6 +5,7 @@
environment.systemPackages = with pkgs; [
rustup
stripe-cli
];
homebrew = {

View file

@ -51,7 +51,10 @@
autoUpdate = true;
upgrade = true;
};
brews = [ "openssl" ];
brews = [
"openssl"
"wxwidgets"
];
taps = [
"homebrew/cask-versions"
"homebrew/cask-fonts"
@ -59,6 +62,7 @@
casks = [
"1password"
"alfred"
"appcleaner"
"dash6"
"fantastical"
"firefox"

View file

@ -44,6 +44,15 @@
hash = "sha256-rBHgZsBSf4iHI2X6W8PydmIqlv4Ok8nT+Tgj5Dxi73M=";
};
})
(pkgs.vimUtils.buildVimPlugin {
name = "vim-kitty";
src = pkgs.fetchFromGitHub {
owner = "fladson";
repo = "vim-kitty";
rev = "4f3f2901717320f80a1e16a868f706762be8535b";
hash = "sha256-tK7G5m3X8k2HjUA6Rm6Lz82K2GjXzcc1JNlxWrbBxGU=";
};
})
];
colorscheme = "helix-boo";
@ -176,6 +185,8 @@
{ key = "<leader>w"; action = "<cmd>w<cr>"; }
{ key = "<leader>q"; action = "<cmd>q<cr>"; }
{ key = "<leader>s"; action = "<cmd>split<cr>"; }
{ key = "<leader>v"; action = "<cmd>vsplit<cr>"; }
{ key = "<esc>"; action = "<cmd>nohlsearch<cr>"; mode = "n"; }
# root level leader commands

View file

@ -11,6 +11,7 @@
devenv
watchman
fd
wget
];
sessionVariables = {