Compare commits

..

No commits in common. "main" and "lazy-nvim" have entirely different histories.

9 changed files with 12 additions and 125 deletions

View File

@ -1,31 +0,0 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"modules": [
"colors",
"break",
"host",
"kernel",
"uptime",
"shell",
"de",
"terminal",
"cpu",
"gpu",
"memory",
{ "type": "localip", "key": "IP" }
],
"display": {
"key": { "width": 11 },
"percent": { "type": 2 }
},
"logo": {
"type": "iterm",
"source": "~/.config/fastfetch/neko.gif",
"width": 14,
"height": 7,
"padding": {
"top": 2,
"left": 2
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 495 KiB

View File

@ -1,16 +1,16 @@
{ {
"barbar.nvim": { "branch": "master", "commit": "3a74402bdf04745a762de83d5c5e88e3e9b0e2e0" }, "barbar.nvim": { "branch": "master", "commit": "807bede7ef1d8e2ac5f108e9ac8123b1e2d321e3" },
"catppuccin": { "branch": "main", "commit": "1bf070129c0b6f77cc23f6a2212dcdc868308c52" }, "catppuccin": { "branch": "main", "commit": "4bb938bbba41d306db18bf0eb0633a5f28fd7ba0" },
"cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-nvim-lsp": { "branch": "main", "commit": "a8912b88ce488f411177fc8aed358b04dc246d7b" }, "cmp-nvim-lsp": { "branch": "main", "commit": "99290b3ec1322070bcfb9e846450a46f6efa50f0" },
"conform.nvim": { "branch": "master", "commit": "372fc521f8421b7830ea6db4d6ea3bae1c77548c" }, "conform.nvim": { "branch": "master", "commit": "a6f5bdb78caa305496357d17e962bbc4c0b392e2" },
"gitsigns.nvim": { "branch": "main", "commit": "7ce11abbb8b038a9de4fb6f75d8289c58d81aed7" }, "gitsigns.nvim": { "branch": "main", "commit": "4c40357994f386e72be92a46f41fc1664c84c87d" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"neo-tree.nvim": { "branch": "v3.x", "commit": "1ef260eb4f54515fe121a2267b477efb054d108a" }, "neo-tree.nvim": { "branch": "v3.x", "commit": "e96fd85bf18bc345dab332b345098fa5460dffac" },
"nui.nvim": { "branch": "main", "commit": "f535005e6ad1016383f24e39559833759453564e" }, "nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" },
"nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" }, "nvim-cmp": { "branch": "main", "commit": "5a11682453ac6b13dbf32cd403da4ee9c07ef1c3" },
"nvim-lspconfig": { "branch": "master", "commit": "4bc481b6f0c0cf3671fc894debd0e00347089a4e" }, "nvim-lspconfig": { "branch": "master", "commit": "99c75820f2606b6b446cad7c75ec2ef7ee8a1317" },
"nvim-web-devicons": { "branch": "master", "commit": "2c2b4eafce6cdd0cb165036faa17396eff18f847" }, "nvim-web-devicons": { "branch": "master", "commit": "1020869742ecb191f260818234517f4a1515cfe8" },
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, "telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
"which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" } "which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" }

View File

@ -15,7 +15,7 @@ return {
mantle = "#000000" mantle = "#000000"
}, },
}, },
transparent_background = true, transparent_background = false,
no_italic = false, no_italic = false,
no_bold = false, no_bold = false,
styles = { styles = {

View File

@ -1,34 +0,0 @@
vim.api.nvim_create_autocmd("User", {
pattern = "LazyUpdate",
callback = function()
vim.schedule(function()
local home = os.getenv("HOME") or "~/"
local cmd = {
"yadm",
"-C",
string.format("%s", home),
"commit",
".config/nvim/lazy-lock.json",
"-m",
"Update lazy-lock.json"
}
local success, process = pcall(function()
return vim.system(cmd):wait()
end)
if process and process.code == 0 then
vim.notify("Committed lazy-lock")
else
if not success then
vim.notify("Failed to run command")
else
vim.notify("Git ran, but nothing committed")
end
end
end)
end
})
return {}

View File

@ -41,18 +41,6 @@ export B2_ACCOUNT_KEY=$(getSecret "/server/mac-mini-1/b2-account-key")
--exclude ".pnpm-store" \ --exclude ".pnpm-store" \
--exclude ".Trashes" | jq 'select(.message_type | test("summary"))' > /tmp/restic-backup.json --exclude ".Trashes" | jq 'select(.message_type | test("summary"))' > /tmp/restic-backup.json
/usr/local/bin/restic forget \
--password-file <(source /Users/noahheague/.config/scripts/util/secret.sh; getSecret '/server/mac-mini-1/restic-key') \
--keep-daily 7 \
--keep-weekly 5 \
--keep-monthly 12 \
--keep-yearly 1 \
-r b2:pfych-home-server-backup
/usr/local/bin/restic prune \
--password-file <(source /Users/noahheague/.config/scripts/util/secret.sh; getSecret '/server/mac-mini-1/restic-key') \
-r b2:pfych-home-server-backup
/Users/noahheague/.config/scripts/util/webhook.sh \ /Users/noahheague/.config/scripts/util/webhook.sh \
-c "backup" \ -c "backup" \
-m "Restic Backup Completed!" -m "Restic Backup Completed!"

View File

@ -1,12 +1,9 @@
local wezterm = require 'wezterm' local wezterm = require 'wezterm'
local config = wezterm.config_builder() local config = wezterm.config_builder()
local opacity = 0.85
config.font = wezterm.font('Monaco Nerd Font Mono', { weight = 'Medium' }) config.font = wezterm.font('Monaco Nerd Font Mono', { weight = 'Medium' })
config.font_size = 12 config.font_size = 12
config.freetype_load_target = 'Normal' config.freetype_load_target = 'Normal'
config.window_background_opacity = opacity
config.macos_window_background_blur = 20
if wezterm.gui.get_appearance():find "Dark" then if wezterm.gui.get_appearance():find "Dark" then
config.color_scheme = 'Catppuccin Mocha' config.color_scheme = 'Catppuccin Mocha'
@ -17,18 +14,4 @@ else
config.color_scheme = 'Catppuccin Latte' config.color_scheme = 'Catppuccin Latte'
end end
wezterm.on('update-status', function(window)
local overrides = window:get_config_overrides() or {}
if window:is_focused() then
overrides.window_background_opacity = opacity
else
overrides.window_background_opacity = opacity / 1.25
end
window:set_config_overrides(overrides)
end)
return config return config

View File

@ -7,9 +7,6 @@ source "$CONFIGDIR/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"
ZSH_AUTOSUGGEST_USE_ASYNC=true ZSH_AUTOSUGGEST_USE_ASYNC=true
ZSH_AUTOSUGGEST_STRATEGY=(history completion) ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# FZF
source <(fzf --zsh)
# Prompt # Prompt
configPrompt() { configPrompt() {
case $(uname -n) in case $(uname -n) in

View File

@ -1,17 +1,3 @@
# Setup ZSH History
SAVEHIST=1000
HISTSIZE=1000
HISTFILE=~/.zsh_history
setopt hist_ignore_all_dups
setopt hist_ignore_space
setopt extendedglob
HISTORY_IGNORE='(git reset*|reboot|shutdown|exit|cd ..|cd ~|..|~|clear)'
setopt SHARE_HISTORY
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_REDUCE_BLANKS
# Use NVIM # Use NVIM
alias vim=nvim alias vim=nvim
@ -33,5 +19,3 @@ alias a=fuck
# Load extra functions # Load extra functions
source "$CONFIGDIR/scripts/scripts.sh" source "$CONFIGDIR/scripts/scripts.sh"
fastfetch;