mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate sesh
This commit is contained in:
@@ -14,7 +14,6 @@
|
|||||||
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
||||||
~/.config/gh/config.yml: github/gh/config.yml
|
~/.config/gh/config.yml: github/gh/config.yml
|
||||||
~/.config/nvim: nvim
|
~/.config/nvim: nvim
|
||||||
~/.config/sesh: sesh
|
|
||||||
~/.config/sketchybar: sketchybar
|
~/.config/sketchybar: sketchybar
|
||||||
~/.config/starship.toml: prompt/starship.toml
|
~/.config/starship.toml: prompt/starship.toml
|
||||||
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
|
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
|
||||||
|
|||||||
3
Brewfile
3
Brewfile
@@ -11,7 +11,6 @@ tap "homebrew/command-not-found"
|
|||||||
tap "homebrew/services"
|
tap "homebrew/services"
|
||||||
tap "jakehilborn/jakehilborn"
|
tap "jakehilborn/jakehilborn"
|
||||||
tap "jondot/tap"
|
tap "jondot/tap"
|
||||||
tap "joshmedeski/sesh"
|
|
||||||
tap "koekeishiya/formulae"
|
tap "koekeishiya/formulae"
|
||||||
tap "ms-jpq/sad"
|
tap "ms-jpq/sad"
|
||||||
tap "oven-sh/bun"
|
tap "oven-sh/bun"
|
||||||
@@ -428,8 +427,6 @@ brew "fsouza/prettierd/prettierd"
|
|||||||
brew "jakehilborn/jakehilborn/displayplacer"
|
brew "jakehilborn/jakehilborn/displayplacer"
|
||||||
# The scalable code generator that saves you time.
|
# The scalable code generator that saves you time.
|
||||||
brew "jondot/tap/hygen"
|
brew "jondot/tap/hygen"
|
||||||
# Smart terminal session manager
|
|
||||||
brew "joshmedeski/sesh/sesh"
|
|
||||||
# Simple hotkey-daemon for macOS.
|
# Simple hotkey-daemon for macOS.
|
||||||
brew "koekeishiya/formulae/skhd"
|
brew "koekeishiya/formulae/skhd"
|
||||||
# A tiling window manager for macOS based on binary space partitioning.
|
# A tiling window manager for macOS based on binary space partitioning.
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ in
|
|||||||
./oatmeal
|
./oatmeal
|
||||||
./ripgrep
|
./ripgrep
|
||||||
./ruby
|
./ruby
|
||||||
|
./sesh
|
||||||
./skhd
|
./skhd
|
||||||
./yabai
|
./yabai
|
||||||
./yazi
|
./yazi
|
||||||
|
|||||||
11
nix/home/sesh/default.nix
Normal file
11
nix/home/sesh/default.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file = {
|
||||||
|
".config/sesh/sesh.toml" = { source = ./sesh.toml; };
|
||||||
|
".config/sesh/scripts/node_dev" = { source = ./scripts/node_dev; };
|
||||||
|
".config/sesh/scripts/open_files" = { source = ./scripts/open_files; };
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [ pkgs.sesh ];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user