mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate zed
This commit is contained in:
@@ -16,7 +16,6 @@
|
|||||||
~/.config/nvim: nvim
|
~/.config/nvim: nvim
|
||||||
~/.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
|
||||||
~/.config/zed/settings.json: zed/settings.json
|
|
||||||
~/.gitconfig: git/gitconfig
|
~/.gitconfig: git/gitconfig
|
||||||
~/.gitignore: git/gitignore
|
~/.gitignore: git/gitignore
|
||||||
~/.gitmux.conf: tmux/gitmux.conf
|
~/.gitmux.conf: tmux/gitmux.conf
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
casks = [
|
casks = [
|
||||||
"hammerspoon"
|
"hammerspoon"
|
||||||
"raycast"
|
"raycast"
|
||||||
|
"zed"
|
||||||
];
|
];
|
||||||
masApps = { };
|
masApps = { };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ in
|
|||||||
./wget
|
./wget
|
||||||
./yabai
|
./yabai
|
||||||
./yazi
|
./yazi
|
||||||
|
./zed
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
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