figured out how to open in shell
parent
0f6bd57b03
commit
e92c55a806
|
|
@ -138,6 +138,7 @@ function y() {
|
|||
rm -f -- "$tmp"
|
||||
}
|
||||
|
||||
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/pin.txt
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
/home/themiro/Dotfiles/desktopenvs/hyprland/dunst/
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# #######################################################################################
|
||||
# AUTOGENERATED HYPR CONFIG.
|
||||
# PLEASE USE THE CONFIG PROVIDED IN THE GIT REPO /examples/hypr.conf AND EDIT IT,
|
||||
|
|
@ -53,7 +52,7 @@ env = XCURSOR_SIZE,32
|
|||
|
||||
# Set programs that you use
|
||||
$terminal = kitty
|
||||
$fileManager = kitty zsh y
|
||||
$fileManager = kitty -e yazi
|
||||
$editor = kitty micro
|
||||
$menu = wofi
|
||||
|
||||
|
|
@ -174,7 +173,7 @@ input {
|
|||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
left_handed = true
|
||||
#left_handed = true
|
||||
follow_mouse = 1
|
||||
|
||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
/home/themiro/Dotfiles/desktopenvs/hyprland/kitty/
|
||||
|
|
@ -0,0 +1 @@
|
|||
/home/themiro/Dotfiles/desktopenvs/hyprland/waybar/
|
||||
|
|
@ -0,0 +1 @@
|
|||
/home/themiro/Dotfiles/desktopenvs/hyprland/wofi/
|
||||
|
|
@ -0,0 +1 @@
|
|||
/home/themiro/Dotfiles/micro/
|
||||
|
|
@ -2,6 +2,11 @@
|
|||
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
||||
"$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
|
||||
|
||||
[[manager.prepend_keymap]]
|
||||
on = "z"
|
||||
run = 'shell "$SHELL" --block --confirm'
|
||||
desc = "Open shell here"
|
||||
|
||||
[manager]
|
||||
|
||||
keymap = [
|
||||
|
|
@ -69,9 +74,9 @@ keymap = [
|
|||
{ on = "s", run = "search fd", desc = "Search files by name using fd" },
|
||||
{ on = "S", run = "search rg", desc = "Search files by content using ripgrep" },
|
||||
{ on = "<C-s>", run = "escape --search", desc = "Cancel the ongoing search" },
|
||||
{ on = "z", run = "plugin zoxide", desc = "Jump to a directory using zoxide" },
|
||||
{ on = "Z", run = "plugin fzf", desc = "Jump to a directory or reveal a file using fzf" },
|
||||
|
||||
|
||||
# Linemode
|
||||
{ on = [ "m", "s" ], run = "linemode size", desc = "Set linemode to size" },
|
||||
{ on = [ "m", "p" ], run = "linemode permissions", desc = "Set linemode to permissions" },
|
||||
|
|
|
|||
|
|
@ -14,5 +14,7 @@ inkscape = [
|
|||
[open]
|
||||
prepend_rules = [
|
||||
{ name = "*.svg", use = "inkscape" },
|
||||
{ name = "*/", use = "kitty" },
|
||||
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
#ohmyzsh plugins
|
||||
echo "Installing oh my zsh plugins"
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||
Loading…
Reference in New Issue