Compare commits
5 commits
ed6b02924f
...
cf41e0cb1a
Author | SHA1 | Date | |
---|---|---|---|
cf41e0cb1a | |||
0dffc86fbf | |||
c115136dc2 | |||
30d1fb1326 | |||
e276af98a8 |
5 changed files with 8 additions and 5 deletions
|
@ -67,7 +67,7 @@ bindsym XF86MonBrightnessDown exec brightnessctl set 10%-
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
# Custom keybinds
|
# Custom keybinds
|
||||||
bindsym $mod+s exec --no-startup-id flameshot gui -p ~/Pictures/captures --clipboard
|
bindsym $mod+s exec --no-startup-id flameshot gui --path ~/Pictures/captures --raw | xclip -selection clipboard -target image/png
|
||||||
bindsym $mod+f exec --no-startup-id firefox
|
bindsym $mod+f exec --no-startup-id firefox
|
||||||
bindsym $mod+u exec --no-startup-id autorandr -c
|
bindsym $mod+u exec --no-startup-id autorandr -c
|
||||||
bindsym $mod+Shift+f exec --no-startup-id firefox --private-window
|
bindsym $mod+Shift+f exec --no-startup-id firefox --private-window
|
||||||
|
|
|
@ -45,6 +45,6 @@ map("n", "<leader>4", [[<cmd>lua require("harpoon.ui").nav_file(4)<CR>]], opts)
|
||||||
map("n", "<A-[>", [[<cmd>lua require("harpoon.ui").nav_prev()<CR>]], opts)
|
map("n", "<A-[>", [[<cmd>lua require("harpoon.ui").nav_prev()<CR>]], opts)
|
||||||
map("n", "<A-]>", [[<cmd>lua require("harpoon.ui").nav_next()<CR>]], opts)
|
map("n", "<A-]>", [[<cmd>lua require("harpoon.ui").nav_next()<CR>]], opts)
|
||||||
|
|
||||||
map("n", "<leader>ff", ":FZF<CR>", opts)
|
map("n", "<leader>ff", require("fzf-lua").files, opts)
|
||||||
|
|
||||||
map("n", "mm", ":nohl<CR>", opts)
|
map("n", "mm", ":nohl<CR>", opts)
|
|
@ -25,8 +25,7 @@ return require("packer").startup {
|
||||||
use {'neoclide/coc.nvim', branch = 'release'}
|
use {'neoclide/coc.nvim', branch = 'release'}
|
||||||
use 'nvim-lua/plenary.nvim'
|
use 'nvim-lua/plenary.nvim'
|
||||||
use 'ThePrimeagen/harpoon'
|
use 'ThePrimeagen/harpoon'
|
||||||
use 'junegunn/fzf'
|
use 'ibhagwan/fzf-lua'
|
||||||
use 'junegunn/fzf.vim'
|
|
||||||
use 'neovim/nvim-lspconfig'
|
use 'neovim/nvim-lspconfig'
|
||||||
use 'jose-elias-alvarez/null-ls.nvim'
|
use 'jose-elias-alvarez/null-ls.nvim'
|
||||||
use 'MunifTanjim/prettier.nvim'
|
use 'MunifTanjim/prettier.nvim'
|
||||||
|
|
|
@ -7,6 +7,7 @@ dunst
|
||||||
fastfetch
|
fastfetch
|
||||||
firefox
|
firefox
|
||||||
flameshot
|
flameshot
|
||||||
|
fzf
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
htop
|
htop
|
||||||
hyfetch
|
hyfetch
|
||||||
|
@ -15,7 +16,6 @@ i3lock
|
||||||
keepassxc
|
keepassxc
|
||||||
keepmenu
|
keepmenu
|
||||||
less
|
less
|
||||||
lf
|
|
||||||
mpv
|
mpv
|
||||||
neovim
|
neovim
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
@ -28,6 +28,7 @@ plexamp-appimage
|
||||||
pulseaudio-control
|
pulseaudio-control
|
||||||
picom
|
picom
|
||||||
polybar
|
polybar
|
||||||
|
ranger
|
||||||
rsync
|
rsync
|
||||||
sxiv
|
sxiv
|
||||||
rofi
|
rofi
|
||||||
|
|
3
.zshrc
3
.zshrc
|
@ -20,6 +20,7 @@ SAVEHIST=10000
|
||||||
alias lss="ls -lah"
|
alias lss="ls -lah"
|
||||||
alias yt-dlp-mp4="yt-dlp --no-config --format 'bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]'"
|
alias yt-dlp-mp4="yt-dlp --no-config --format 'bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]'"
|
||||||
alias t="todo.sh"
|
alias t="todo.sh"
|
||||||
|
alias r="ranger"
|
||||||
|
|
||||||
alias gco="git checkout"
|
alias gco="git checkout"
|
||||||
alias gcm="git commit -m"
|
alias gcm="git commit -m"
|
||||||
|
@ -46,3 +47,5 @@ export NVM_DIR="$HOME/.nvm"
|
||||||
export PATH="$HOME/.dotnet/tools:$PATH"
|
export PATH="$HOME/.dotnet/tools:$PATH"
|
||||||
export PATH="$HOME/.yarn/bin:$PATH"
|
export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
|
|
||||||
|
# Emacs Mode
|
||||||
|
bindkey -e
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue