{fix] Add stuff
This commit is contained in:
3
config/fish/conf.d/macos.fish
Normal file
3
config/fish/conf.d/macos.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
if [ (uname) = "Darwin" ];
|
||||||
|
source ~/.config/fish/conf.d/macos/*
|
||||||
|
end
|
||||||
8
config/fish/conf.d/macos/fnm.fish
Normal file
8
config/fish/conf.d/macos/fnm.fish
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
set -gx PATH "/Users/fs0c131y/Library/Caches/fnm_multishells/57420_1689833237098/bin" $PATH;
|
||||||
|
set -gx FNM_NODE_DIST_MIRROR "https://nodejs.org/dist";
|
||||||
|
set -gx FNM_COREPACK_ENABLED "false";
|
||||||
|
set -gx FNM_ARCH "arm64";
|
||||||
|
set -gx FNM_VERSION_FILE_STRATEGY "local";
|
||||||
|
set -gx FNM_MULTISHELL_PATH "/Users/fs0c131y/Library/Caches/fnm_multishells/57420_1689833237098";
|
||||||
|
set -gx FNM_DIR "/Users/fs0c131y/Library/Application Support/fnm";
|
||||||
|
set -gx FNM_LOGLEVEL "info";
|
||||||
10
config/fish/functions/cclose.fish
Normal file
10
config/fish/functions/cclose.fish
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
function cclose --argument-names issue target --description "Comment and close github issue"
|
||||||
|
if test -z "$issue"
|
||||||
|
echo "Usage: cclose {issue num}"
|
||||||
|
return 1
|
||||||
|
end
|
||||||
|
gh issue comment "$issue"
|
||||||
|
gh issue close "$issue"
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
5
config/nvim/lua/.luarc.json
Normal file
5
config/nvim/lua/.luarc.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"diagnostics.globals": [
|
||||||
|
"vim"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user