3 Commits

8 changed files with 68 additions and 10 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

@@ -17,7 +17,6 @@
"lazyvim.plugins.extras.lang.tex", "lazyvim.plugins.extras.lang.tex",
"lazyvim.plugins.extras.lang.toml", "lazyvim.plugins.extras.lang.toml",
"lazyvim.plugins.extras.lang.yaml", "lazyvim.plugins.extras.lang.yaml",
"lazyvim.plugins.extras.util.project",
"lazyvim.plugins.extras.util.startuptime" "lazyvim.plugins.extras.util.startuptime"
], ],
"install_version": 8, "install_version": 8,

View File

@@ -34,6 +34,7 @@ createCmd("BufWritePre", {
group = vim.api.nvim_create_augroup("GoFormat", defaultGroupOptions), group = vim.api.nvim_create_augroup("GoFormat", defaultGroupOptions),
}) })
-- GoPass
vim.api.nvim_exec2( vim.api.nvim_exec2(
[[ [[
autocmd BufNewFile,BufRead /private/**/gopass** setlocal noswapfile nobackup noundofile shada="" autocmd BufNewFile,BufRead /private/**/gopass** setlocal noswapfile nobackup noundofile shada=""

View File

@@ -39,7 +39,24 @@ return {
dockerls = {}, dockerls = {},
gopls = {}, gopls = {},
jsonls = {}, jsonls = {},
lua_ls = {}, lua_ls = {
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
diagnostics = {
globals = { "vim" },
},
workspace = {
library = vim.api.nvim_get_runtime_file("", true),
},
telemetry = {
enable = false
}
},
}
},
marksman = {}, marksman = {},
sourcekit = {}, sourcekit = {},
yamlls = {}, yamlls = {},

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 "$@"
} }