Compare commits

..

10 Commits

  1. 26
      .bashrc
  2. 1
      .inputrc
  3. 38
      .profile
  4. 3
      .tmux.conf
  5. 13
      CHANGELOG.md
  6. 1
      VERSION

@ -36,7 +36,7 @@ HISTSIZE=10000
HISTFILESIZE=50000 HISTFILESIZE=50000
# moje vložené ignoruje príkazy # moje vložené ignoruje príkazy
HISTIGNORE=yy*:jw:.:..*:poweroff:reboot:exit HISTIGNORE=.:\ :..*:poweroff:reboot:exit
#HISTIGNORE=&: :yy*:jw:.:..*:poweroff:reboot:exit #HISTIGNORE=&: :yy*:jw:.:..*:poweroff:reboot:exit
# check the window size after each command and, if necessary, # check the window size after each command and, if necessary,
@ -144,7 +144,31 @@ if ! shopt -oq posix; then
fi fi
fi fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
if [ -d "$HOME/.binenv" ] ; then
PATH="${HOME}/.binenv:$PATH"
source <(binenv completion bash)
fi
# set PATH so it includes cargo bin if it exists
if [ -d "$HOME/.cargo/bin" ] ; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
# symbolický link do zložky pre rýchly pohyb v zložkách
if [ -d "$HOME/.goto" ]; then
export CDPATH=".:$HOME/.goto:/"
alias goto="cd -P"
fi
##TMUX pre automatické spustenie -> touch ~/.tmux.auto ##TMUX pre automatické spustenie -> touch ~/.tmux.auto
if [ -f ~/.tmux.auto ]; then if [ -f ~/.tmux.auto ]; then

@ -4,3 +4,4 @@ set expand-tilde on # expanduje tildu po <tab>
"\C-t": forward-search-history # história reverzne ^-t "\C-t": forward-search-history # história reverzne ^-t
"\e[1;5D": backward-word # Skákanie po slovách ^-doľava "\e[1;5D": backward-word # Skákanie po slovách ^-doľava
"\e[1;5C": forward-word # Skákanie po slovách ^-doprava "\e[1;5C": forward-word # Skákanie po slovách ^-doprava
set completion-ignore-case on

@ -16,22 +16,22 @@ if [ -n "$BASH_VERSION" ]; then
fi fi
fi fi
# set PATH so it includes user's private bin if it exists ## set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then #if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH" # PATH="$HOME/bin:$PATH"
fi #fi
#
# set PATH so it includes user's private bin if it exists ## set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then #if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH" # PATH="$HOME/.local/bin:$PATH"
fi #fi
#
if [ -d "$HOME/.binenv" ] ; then #if [ -d "$HOME/.binenv" ] ; then
PATH="${HOME}/.binenv:$PATH" # PATH="${HOME}/.binenv:$PATH"
source <(binenv completion bash) # source <(binenv completion bash)
fi #fi
#
# set PATH so it includes cargo bin if it exists ## set PATH so it includes cargo bin if it exists
if [ -d "$HOME/.cargo/bin" ] ; then #if [ -d "$HOME/.cargo/bin" ] ; then
export PATH="$HOME/.cargo/bin:$PATH" # export PATH="$HOME/.cargo/bin:$PATH"
fi #fi

@ -1,5 +1,8 @@
#unbind C-b #unbind C-b
#set -g prefix C-a #set -g prefix C-a
#bind C-a send-prefix #bind C-a send-prefix
#
#set -g status-right "%H:%M:%S %A %d-%m-%Y" #set -g status-right "%H:%M:%S %A %d-%m-%Y"
set -g default-terminal "screen-256color" set -g default-terminal "screen-256color"
setw -g aggressive-resize on
set -g history-limit 99999

@ -0,0 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.0.0] - 2025-04-20
### Added
- New changelog file.
[0.0.0]: ssh://git@gitea.steb.eu:39521/stevo/armbian_config/releases/tag/v0.0.0

@ -0,0 +1 @@
0.0.0
Loading…
Cancel
Save