feat: Updates lazyvim configuration, adds some configuration files.

This commit is contained in:
2025-04-01 11:58:35 -04:00
parent 6c6c5c507d
commit 3fc1054206
5 changed files with 49 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ window-save-state = always
# NOTE: This setting removes tabs, rounded borders, and window controls. # NOTE: This setting removes tabs, rounded borders, and window controls.
# Also makes some of the below macos-titlebar-* things not matter, but # Also makes some of the below macos-titlebar-* things not matter, but
# will take affect if this is set to true. # will take affect if this is set to true.
window-decoration = false window-decoration = true
copy-on-select = true copy-on-select = true
quit-after-last-window-closed = true quit-after-last-window-closed = true

View File

@@ -3,11 +3,9 @@
[recipients] [recipients]
hash = b73e3c328517ad0b8a03ab1ba113e117595d40ae355f1e42984a8f8144bafc4a hash = b73e3c328517ad0b8a03ab1ba113e117595d40ae355f1e42984a8f8144bafc4a
[mounts "servers"] [mounts "servers"]
path = /Users/michael/.local/share/gopass/stores/servers
[recipients "homelab"] [recipients "homelab"]
hash = e4e019251bcd688aa1691b6b4363a9798593f4aed464afb63d11149ea771b4e0 hash = e4e019251bcd688aa1691b6b4363a9798593f4aed464afb63d11149ea771b4e0
[mounts "homelab"] [mounts "homelab"]
path = /Users/michael/.local/share/gopass/stores/homelab
[recipients "new-test"] [recipients "new-test"]
hash = 3199e2acda60d6f17a15882ba11749feda9775cf848554c8f04f12bc84521fd3 hash = 3199e2acda60d6f17a15882ba11749feda9775cf848554c8f04f12bc84521fd3
[mounts "new-test"] [mounts "new-test"]

View File

@@ -0,0 +1,42 @@
-- NOTE: Header looks jacked up here, but fine when rendered in the ui.
return {
"folke/snacks.nvim",
opts = {
picker = {
hidden = true,
ignored = true
},
dashboard = {
row = nil,
col = nil,
preset = {
header = [[
*
+++++
+++++++++
==+++++++++++
+===:+++++++++++*
+======--+++++++++++*##+====
+==========:=+++++++++++#+====
+=============-=++++++++++++====
+================-:+++++++++++++==
+===================--++++++++++++++*
+======================--+++++++++++++++*
=========================-++++++++++++++++
==========================:+++++++++++++++
===========================:++++++++++++++
===========================-.-++++++++++++
===========================-::.=++++++++++
===========================----..=++++++++
===========================------..:=+++++
===========================--------:...-++
===========================------------:.:
===========================---------------
===========================---------------
===========================---------------
]],
},
},
},
}

View File

@@ -26,16 +26,18 @@ export GITUSER="m-housh"
export GIT_DISCOVERY_ACROSS_FILESYSTEM=1 export GIT_DISCOVERY_ACROSS_FILESYSTEM=1
# Directories # Directories
export ARCHIVE="/Volumes/Archive"
export BUCKET="/Volumes/Bucket"
export REPOS="/Volumes/Bucket/Repos"
export DRIVE="/Volumes/Personal-Drive"
export ANSIBLE_LOCAL="$REPOS/ansible" export ANSIBLE_LOCAL="$REPOS/ansible"
export ANSIBLE_GEN_DIR="$ANSIBLE_LOCAL/ansible-gen-playbook" export ANSIBLE_GEN_DIR="$ANSIBLE_LOCAL/ansible-gen-playbook"
export ANSIBLE_MACOS_PLAYBOOK_DIR="$HOME/ansible-macos-playbook" export ANSIBLE_MACOS_PLAYBOOK_DIR="$HOME/ansible-macos-playbook"
export ARCHIVE="/Volumes/Archive"
export BUCKET="/Volumes/Bucket"
export CONSULTS="$DRIVE/Consults" export CONSULTS="$DRIVE/Consults"
export DOTFILES="$HOME/.dotfiles" export DOTFILES="$HOME/.dotfiles"
export DOCUMENTS="$HOME/Documents" export DOCUMENTS="$HOME/Documents"
export DOWNLOADS="$HOME/Downloads" export DOWNLOADS="$HOME/Downloads"
export DRIVE="/Volumes/Personal-Drive"
export GHREPOS="$REPOS/github.com" export GHREPOS="$REPOS/github.com"
export LOCAL_REPOS="$REPOS/local" export LOCAL_REPOS="$REPOS/local"
export LOCAL_ENV="$XDG_DATA_HOME/zsh/env.zsh" export LOCAL_ENV="$XDG_DATA_HOME/zsh/env.zsh"
@@ -43,7 +45,6 @@ export MYZSHRC="$ZDOTDIR/.zshrc"
export NAP_CONFIG="$HOME/.config/nap/config.yaml" export NAP_CONFIG="$HOME/.config/nap/config.yaml"
export PDFS="$HOME/Library/Mobile Documents/com~apple~Preview/Documents" export PDFS="$HOME/Library/Mobile Documents/com~apple~Preview/Documents"
export PROPOSALS="$HOME/Library/Mobile Documents/com~apple~CloudDocs/Work/Proposals" export PROPOSALS="$HOME/Library/Mobile Documents/com~apple~CloudDocs/Work/Proposals"
export REPOS="/Volumes/Bucket/Repos"
export SCREENSHOTS="$BUCKET/Pictures/Screenshots" export SCREENSHOTS="$BUCKET/Pictures/Screenshots"
export SCRIPTS="$XDG_DATA_HOME/scripts" export SCRIPTS="$XDG_DATA_HOME/scripts"
export SITES="$GHREPOS/sites" export SITES="$GHREPOS/sites"

View File

@@ -20,6 +20,6 @@ function n() {
# && return 0 # && return 0
# fi # fi
nvim "$1" nvim "$@"
} }