From 7204e19f8abd5cf15900514f0294587c8a6959a4 Mon Sep 17 00:00:00 2001 From: scbj Date: Mon, 11 Nov 2024 09:25:44 +0100 Subject: [PATCH] moved scripts to dotfiles repository changed this repositories purpose to documentation only --- docs/bash.md => bash.md | 0 commands/colors.sh | 5 ----- commands/dunst.sh | 15 --------------- docs/git.md => git.md | 0 docs/image-files.md => image-files.md | 0 ...resting_commands.md => interesting_commands.md | 0 docs/linux.md => linux.md | 0 {docs/linux => linux}/commands.md | 0 docs/markdown.md => markdown.md | 0 nvim.md | 12 ++++++++++++ docs/python-venv.md => python-venv.md | 0 vim.md | 1 + 12 files changed, 13 insertions(+), 20 deletions(-) rename docs/bash.md => bash.md (100%) delete mode 100644 commands/colors.sh delete mode 100644 commands/dunst.sh rename docs/git.md => git.md (100%) rename docs/image-files.md => image-files.md (100%) rename docs/interesting_commands.md => interesting_commands.md (100%) rename docs/linux.md => linux.md (100%) rename {docs/linux => linux}/commands.md (100%) rename docs/markdown.md => markdown.md (100%) create mode 100644 nvim.md rename docs/python-venv.md => python-venv.md (100%) create mode 120000 vim.md diff --git a/docs/bash.md b/bash.md similarity index 100% rename from docs/bash.md rename to bash.md diff --git a/commands/colors.sh b/commands/colors.sh deleted file mode 100644 index 59c1988..0000000 --- a/commands/colors.sh +++ /dev/null @@ -1,5 +0,0 @@ -show256colors () { - for code in {0..255}; do - echo -e "\e[38;05;${code}m $code: Color"; - done -} diff --git a/commands/dunst.sh b/commands/dunst.sh deleted file mode 100644 index 3f4b359..0000000 --- a/commands/dunst.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -# reset dunst and send notification to Test dUNST config -tunst() { - killall -9 dunst - - if [[ -z $1 ]]; then - notify-send "Henlo" "fren of fren of very fren"; - else - for n in $(seq 1 $1); do - notify-send "Henlo(${n})" "fren of fren of fren number ${n}"; - done - fi -} - diff --git a/docs/git.md b/git.md similarity index 100% rename from docs/git.md rename to git.md diff --git a/docs/image-files.md b/image-files.md similarity index 100% rename from docs/image-files.md rename to image-files.md diff --git a/docs/interesting_commands.md b/interesting_commands.md similarity index 100% rename from docs/interesting_commands.md rename to interesting_commands.md diff --git a/docs/linux.md b/linux.md similarity index 100% rename from docs/linux.md rename to linux.md diff --git a/docs/linux/commands.md b/linux/commands.md similarity index 100% rename from docs/linux/commands.md rename to linux/commands.md diff --git a/docs/markdown.md b/markdown.md similarity index 100% rename from docs/markdown.md rename to markdown.md diff --git a/nvim.md b/nvim.md new file mode 100644 index 0000000..742ba91 --- /dev/null +++ b/nvim.md @@ -0,0 +1,12 @@ +# nvim (neovim) + +- [movement quick list](#movement-quick-list) + + +# movement quick list + +- .. +- jump word (with and without selection) +- home/end +- delete/cut/copy/paste (move) + diff --git a/docs/python-venv.md b/python-venv.md similarity index 100% rename from docs/python-venv.md rename to python-venv.md diff --git a/vim.md b/vim.md new file mode 120000 index 0000000..8fec3a9 --- /dev/null +++ b/vim.md @@ -0,0 +1 @@ +nvim.md \ No newline at end of file