Compare commits

..

No commits in common. "fd716ae8a2b2eab8efe1b03921086d0c6620f79e" and "7cb2f9cea3e94ec5a018418d12c6646c1d507986" have entirely different histories.

4 changed files with 3 additions and 16 deletions

View File

@ -127,5 +127,3 @@ export PATH="$DENO_INSTALL/bin:$PATH"
. "$HOME/.cargo/env"
[ -f ~/.fzf.bash ] && source ~/.fzf.bash

View File

@ -6,8 +6,8 @@ local function map(mode, lhs, rhs, opts)
vim.keymap.set(mode, lhs, rhs, options)
end
map({ "i", "t" }, "jk", "<esc>") -- remap escape
map({ "i", "t" }, "JK", "<esc>") -- remap escape
map({ "i", "v", "t" }, "jk", "<esc>") -- remap escape
map({ "i", "v", "t" }, "JK", "<esc>") -- remap escape
map("n", "<leader>o", "o<esc>")
map("n", "<left>", '<cmd>echo "Use h to move!!"<CR>')

View File

@ -4,15 +4,6 @@ alias devsesh="$HOME/scripts/tmux-dev-session.sh"
alias slides="nohup ${HOME}/scripts/hyprland-slideshow.sh"
alias ls="ls --color=auto"
alias fzf='fzf --preview='\''
if file --mime-type {} | grep -qF '\''image/'\''; then
kitty icat --clear --transfer-mode=memory --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@0x0 {}
else
batcat --color=always {}
fi
'\'''
export SUDO_EDITOR="nvim"
##suffix aliases

View File

@ -29,7 +29,7 @@ eval "$(luarocks path --bin)"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
#fzf
# source <(fzf --zsh)
source <(fzf --zsh)
#starship
eval "$(starship init zsh)"
@ -41,5 +41,3 @@ HISTSIZE=10000
SAVEHIST=10000
# Share history in every terminal session
setopt SHARE_HISTORY
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh