GitLink and wezterm webGPU and nix management - oh my!

This commit is contained in:
Anthony Cicchetti 2024-02-14 16:02:56 -05:00
parent 4b709dbb5b
commit 45dc2ddfe1
6 changed files with 18 additions and 10 deletions

View file

@ -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)

View file

@ -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": {

View file

@ -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;
}; };

View file

@ -96,6 +96,7 @@
) )
++ (with pkgs.vimExtraPlugins; [ ++ (with pkgs.vimExtraPlugins; [
rainbow-delimiters-nvim rainbow-delimiters-nvim
gitlinker-linrongbin16
]); ]);
mappings = { mappings = {
normal = { normal = {

View file

@ -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()

View file

@ -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