GitLink and wezterm webGPU and nix management - oh my!
This commit is contained in:
parent
4b709dbb5b
commit
45dc2ddfe1
6 changed files with 18 additions and 10 deletions
|
@ -28,10 +28,6 @@ hs.hotkey.bind({"ctrl"}, "t", function ()
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
hs.hotkey.bind({"ctrl", "alt"}, "t", function ()
|
|
||||||
hs.application.launchOrFocus("/Users/acicchetti/bin/Terminal (Rosetta).app")
|
|
||||||
end)
|
|
||||||
|
|
||||||
hs.hotkey.bind({"cmd", "alt"}, ",", function ()
|
hs.hotkey.bind({"cmd", "alt"}, ",", function ()
|
||||||
hs.application.launchOrFocus("System Preferences")
|
hs.application.launchOrFocus("System Preferences")
|
||||||
end)
|
end)
|
||||||
|
|
12
nix/home-manager/flake.lock
generated
12
nix/home-manager/flake.lock
generated
|
@ -318,11 +318,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1707683400,
|
"lastModified": 1707919853,
|
||||||
"narHash": "sha256-Zc+J3UO1Xpx+NL8UB6woPHyttEy9cXXtm+0uWwzuYDc=",
|
"narHash": "sha256-qxmBGDzutuJ/tsX4gp+Mr7fjxOZBbeT9ixhS5o4iFOw=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "21b078306a2ab68748abf72650db313d646cf2ca",
|
"rev": "043ba285c6dc20f36441d48525402bcb9743c498",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -593,11 +593,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1707831373,
|
"lastModified": 1707939175,
|
||||||
"narHash": "sha256-p7tLY09afIWUm7llsWHWuNlx7+2T4iJ9VmmwBTBwb4M=",
|
"narHash": "sha256-D1xan0lgxbmXDyzVqXTiSYHLmAMrMRdD+alKzEO/p3w=",
|
||||||
"owner": "nixOS",
|
"owner": "nixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "de4aced6f28697c4595e493be901e1b8608a9ffc",
|
"rev": "f7e8132daca31b1e3859ac0fb49741754375ac3d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -145,6 +145,12 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.wezterm = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = false;
|
||||||
|
extraConfig = builtins.readFile ../../wezterm/wezterm.lua;
|
||||||
|
};
|
||||||
|
|
||||||
programs.zoxide = {
|
programs.zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -96,6 +96,7 @@
|
||||||
)
|
)
|
||||||
++ (with pkgs.vimExtraPlugins; [
|
++ (with pkgs.vimExtraPlugins; [
|
||||||
rainbow-delimiters-nvim
|
rainbow-delimiters-nvim
|
||||||
|
gitlinker-linrongbin16
|
||||||
]);
|
]);
|
||||||
mappings = {
|
mappings = {
|
||||||
normal = {
|
normal = {
|
||||||
|
|
|
@ -27,3 +27,6 @@ vim.o.wildmode = "list:longest,full"
|
||||||
vim.api.nvim_create_autocmd('TextYankPost', {
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
||||||
callback = function() vim.highlight.on_yank() end
|
callback = function() vim.highlight.on_yank() end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
require('gitlinker').setup()
|
||||||
|
|
||||||
|
|
|
@ -57,4 +57,6 @@ config.color_schemes = {
|
||||||
config.enable_tab_bar = true
|
config.enable_tab_bar = true
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
|
||||||
|
config.front_end = "WebGpu"
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
Loading…
Add table
Reference in a new issue