From d507e561d790ad385f70fca6aaf3e1f68f98f0e1 Mon Sep 17 00:00:00 2001 From: N0lik Date: Tue, 5 Aug 2025 12:02:06 +0400 Subject: [PATCH] Add files --- .gitmodules | 3 +++ alisa | 1 + macos/alacritty.toml | 2 +- nackernvim | 2 +- sh/alisa | 22 ++++++++++++++++++++++ yazi.toml | 4 ++++ 6 files changed, 32 insertions(+), 2 deletions(-) create mode 160000 alisa create mode 100755 sh/alisa create mode 100644 yazi.toml diff --git a/.gitmodules b/.gitmodules index 680f597..9119a8c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "nackernvim"] path = nackernvim url = git@github.com:1xtier/NackerNVIM.git +[submodule "alisa"] + path = alisa + url = git@github.com:1xtier/alisa.git diff --git a/alisa b/alisa new file mode 160000 index 0000000..c9184a6 --- /dev/null +++ b/alisa @@ -0,0 +1 @@ +Subproject commit c9184a69556920cd79ab08b057d8c1228eb5c29c diff --git a/macos/alacritty.toml b/macos/alacritty.toml index 56a618c..c469551 100644 --- a/macos/alacritty.toml +++ b/macos/alacritty.toml @@ -11,5 +11,5 @@ import = [ #opacity = 0.92 #blur = true [font] -normal.family = "Hack Nerd Font" +normal.family = "DaddyTimeMono Nerd Font Mono" size = 14.0 diff --git a/nackernvim b/nackernvim index bc4005f..c95cedb 160000 --- a/nackernvim +++ b/nackernvim @@ -1 +1 @@ -Subproject commit bc4005f78f134eeebb56867a57a89448867b951b +Subproject commit c95cedb35f9410818ca514af1a5fa478d721fc43 diff --git a/sh/alisa b/sh/alisa new file mode 100755 index 0000000..17a0d5f --- /dev/null +++ b/sh/alisa @@ -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 diff --git a/yazi.toml b/yazi.toml new file mode 100644 index 0000000..c7ac88e --- /dev/null +++ b/yazi.toml @@ -0,0 +1,4 @@ +[opener] +edit = [ + { run = 'nvim "$@"', block = true }, +]