mirror of
https://github.com/1xtier/.dotfiles.git
synced 2026-03-17 02:47:56 +00:00
Add files
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -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
1
alisa
Submodule
Submodule alisa added at c9184a6955
@@ -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
|
||||||
|
|||||||
Submodule nackernvim updated: bc4005f78f...c95cedb35f
22
sh/alisa
Executable file
22
sh/alisa
Executable 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
|
||||||
Reference in New Issue
Block a user