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)
hs.hotkey.bind({"ctrl", "alt"}, "t", function ()
hs.application.launchOrFocus("/Users/acicchetti/bin/Terminal (Rosetta).app")
end)
hs.hotkey.bind({"cmd", "alt"}, ",", function ()
hs.application.launchOrFocus("System Preferences")
end)

View file

@ -318,11 +318,11 @@
]
},
"locked": {
"lastModified": 1707683400,
"narHash": "sha256-Zc+J3UO1Xpx+NL8UB6woPHyttEy9cXXtm+0uWwzuYDc=",
"lastModified": 1707919853,
"narHash": "sha256-qxmBGDzutuJ/tsX4gp+Mr7fjxOZBbeT9ixhS5o4iFOw=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "21b078306a2ab68748abf72650db313d646cf2ca",
"rev": "043ba285c6dc20f36441d48525402bcb9743c498",
"type": "github"
},
"original": {
@ -593,11 +593,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1707831373,
"narHash": "sha256-p7tLY09afIWUm7llsWHWuNlx7+2T4iJ9VmmwBTBwb4M=",
"lastModified": 1707939175,
"narHash": "sha256-D1xan0lgxbmXDyzVqXTiSYHLmAMrMRdD+alKzEO/p3w=",
"owner": "nixOS",
"repo": "nixpkgs",
"rev": "de4aced6f28697c4595e493be901e1b8608a9ffc",
"rev": "f7e8132daca31b1e3859ac0fb49741754375ac3d",
"type": "github"
},
"original": {

View file

@ -145,6 +145,12 @@ in {
};
};
programs.wezterm = {
enable = true;
enableZshIntegration = false;
extraConfig = builtins.readFile ../../wezterm/wezterm.lua;
};
programs.zoxide = {
enable = true;
};

View file

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

View file

@ -27,3 +27,6 @@ vim.o.wildmode = "list:longest,full"
vim.api.nvim_create_autocmd('TextYankPost', {
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.hide_tab_bar_if_only_one_tab = true
config.front_end = "WebGpu"
return config