mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
feat(nix): migrate zed
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
~/.config/nvim: nvim
|
||||
~/.config/starship.toml: prompt/starship.toml
|
||||
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
|
||||
~/.config/zed/settings.json: zed/settings.json
|
||||
~/.gitconfig: git/gitconfig
|
||||
~/.gitignore: git/gitignore
|
||||
~/.gitmux.conf: tmux/gitmux.conf
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
casks = [
|
||||
"hammerspoon"
|
||||
"raycast"
|
||||
"zed"
|
||||
];
|
||||
masApps = { };
|
||||
}
|
||||
|
||||
@@ -27,6 +27,7 @@ in
|
||||
./wget
|
||||
./yabai
|
||||
./yazi
|
||||
./zed
|
||||
];
|
||||
|
||||
config = {
|
||||
|
||||
10
nix/home/zed/default.nix
Normal file
10
nix/home/zed/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file = {
|
||||
".config/zed/settings.json" = { source = ./settings.json; };
|
||||
};
|
||||
|
||||
# TODO: Currently broken, installed with Homebrew
|
||||
# home.packages = [ pkgs.zed-editor ];
|
||||
}
|
||||
Reference in New Issue
Block a user