Files
Config/fish/config.fish
2026-03-31 02:01:37 +03:00

41 lines
1.1 KiB
Fish
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
if status is-interactive
# --- Açılışta logo ile karşılıyor ---
fastfetch --logo small --structure Title:Separator:OS:Kernel:Uptime:Packages:Shell:WM:Terminal:Memory:Break:Colors
# --- Karşılama Mesajını Kapat ---
set -g fish_greeting ""
# --- Renk Şeması ve Görünüm ---
set -g fish_color_command cyan --bold
set -g fish_color_quote yellow
set -g fish_color_redirection magenta
set -g fish_color_end white
set -g fish_color_error red
set -g fish_color_param blue
# --- Kullanışlı Aliaslar (Kısayollar) ---
alias ls='ls --color=auto'
alias ll='ls -lh'
alias la='ls -A'
alias ..='cd ..'
alias ...='cd ../..'
alias l='ls -CF'
alias g='git'
alias c='cd'
alias v='nvim'
alias lvim='NVIM_APPNAME=lvim nvim'
# Sistem güncelleme kısayolu
alias Dupdate='sudo dnf update'
alias Dupgrade='sudo dnf upgrade'
alias Dsearch='sudo dnf search'
# --- Fonksiyonlar ---
# Klasör oluşturup içine anında giren fonksiyon
function mkcd
mkdir -p $argv
cd $argv
end
end