mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
feat: Adds new-proposal function
This commit is contained in:
@@ -43,6 +43,7 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vhyrro/luarocks.nvim",
|
"vhyrro/luarocks.nvim",
|
||||||
|
enabled = true,
|
||||||
priority = 1001, -- this plugin needs to run before anything else
|
priority = 1001, -- this plugin needs to run before anything else
|
||||||
opts = {
|
opts = {
|
||||||
rocks = { "magick" },
|
rocks = { "magick" },
|
||||||
|
|||||||
@@ -66,7 +66,8 @@ path_prepend \
|
|||||||
"$GOPATH/bin" \
|
"$GOPATH/bin" \
|
||||||
"$XDG_DATA_HOME/bin" \
|
"$XDG_DATA_HOME/bin" \
|
||||||
"$HOME/.local/bin" \
|
"$HOME/.local/bin" \
|
||||||
"$SCRIPTS"
|
"$SCRIPTS" \
|
||||||
|
"$HOME/.local/pnpm"
|
||||||
|
|
||||||
# last arg will be first in $FPATH
|
# last arg will be first in $FPATH
|
||||||
fpath_prepend \
|
fpath_prepend \
|
||||||
@@ -215,3 +216,11 @@ source <(kubectl completion zsh)
|
|||||||
# I tried sourcing them in the the `.zshenv` files, but did not work.
|
# I tried sourcing them in the the `.zshenv` files, but did not work.
|
||||||
_source_if "$ZDOTDIR/.zshrc-local"
|
_source_if "$ZDOTDIR/.zshrc-local"
|
||||||
_source_if "$LOCAL_ENV"
|
_source_if "$LOCAL_ENV"
|
||||||
|
|
||||||
|
# pnpm
|
||||||
|
export PNPM_HOME="/Users/michael/.local/share/pnpm"
|
||||||
|
case ":$PATH:" in
|
||||||
|
*":$PNPM_HOME:"*) ;;
|
||||||
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||||
|
esac
|
||||||
|
# pnpm end
|
||||||
|
|||||||
Reference in New Issue
Block a user