Add files

This commit is contained in:
N0lik
2025-08-05 12:02:06 +04:00
parent 47baf05871
commit d507e561d7
6 changed files with 32 additions and 2 deletions

3
.gitmodules vendored
View File

@@ -1,3 +1,6 @@
[submodule "nackernvim"] [submodule "nackernvim"]
path = nackernvim path = nackernvim
url = git@github.com:1xtier/NackerNVIM.git url = git@github.com:1xtier/NackerNVIM.git
[submodule "alisa"]
path = alisa
url = git@github.com:1xtier/alisa.git

1
alisa Submodule

Submodule alisa added at c9184a6955

View File

@@ -11,5 +11,5 @@ import = [
#opacity = 0.92 #opacity = 0.92
#blur = true #blur = true
[font] [font]
normal.family = "Hack Nerd Font" normal.family = "DaddyTimeMono Nerd Font Mono"
size = 14.0 size = 14.0

22
sh/alisa Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
CAT=mdcat
dirman="$HOME/.dotfiles/alisa/"
sshman() {
$CAT $dirman/utils/ssh.md
}
tarman() {
$CAT $dirman/utils/tar.md
}
grepman() {
$CAT $dirman/utils/grep.md
}
while [ -n "$1" ]
do
case "$1" in
ssh )sshman;;
tar )tarman;;
grep )grepman;;
-?)help;;
esac
shift
done

4
yazi.toml Normal file
View File

@@ -0,0 +1,4 @@
[opener]
edit = [
{ run = 'nvim "$@"', block = true },
]