add stuff

This commit is contained in:
Seymur Bagirov 2024-02-14 21:23:25 +04:00
parent 496dac9b76
commit 404eab025f
3 changed files with 14 additions and 3 deletions

View File

@ -201,7 +201,7 @@ bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle bind = $mainMod, J, togglesplit, # dwindle
bind = $mainMod, L, exec, gtklock -i bind = $mainMod, L, exec, gtklock -i
bind = $mainMod, S, exec, grimblast --cursor --notify copy area bind = $mainMod, S, exec, grimblast --cursor --notify copy area
bind = $mainMod_SHIFT, S, exec, swappy -f $(grimblast --cursor --notify copysave area) bind = $mainMod_SHIFT, S, exec, grim -g "$(slurp)" - | satty --filename - --copy-command wl-copy
bind = $mainMod_SHIFT, E, exec, grimblast --cursor --notify edit area bind = $mainMod_SHIFT, E, exec, grimblast --cursor --notify edit area
bind = $mainMod, F12, exec, grimblast --cursor --notify --freeze save screen bind = $mainMod, F12, exec, grimblast --cursor --notify --freeze save screen
bind = $mainMod_SHIFT, F12, exec, grimblast --cursor --notify --freeze save active bind = $mainMod_SHIFT, F12, exec, grimblast --cursor --notify --freeze save active

View File

@ -5,8 +5,8 @@
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers.com-ADDED-Mercy-Overwatch.mp4 # exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers.com-ADDED-Mercy-Overwatch.mp4
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Rainy-Train-Station-4K.mp4 # exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Rainy-Train-Station-4K.mp4
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4 # exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4
exec = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/makoto-yuki-in-the-train-persona-3-reload-moewalls-com.mp4 exec = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Winter-City-4K.mp4
# exec-once = swww init #exec-once = swww init
# exec-once=wallengine --screen-root HDMI-A-2 1383845959 # exec-once=wallengine --screen-root HDMI-A-2 1383845959

View File

@ -0,0 +1,11 @@
return {
"github/copilot.vim",
config = function()
vim.g.copilot_no_tab_map = true
vim.api.nvim_set_keymap("i", "<C-J>", 'copilot#Accept("<CR>")', { silent = true, expr = true })
vim.g.copilot_filetypes = {
-- because i'm learning rust
rust = false
};
end
}