Compare commits
4 Commits
daae24452f
...
main
Author | SHA1 | Date | |
---|---|---|---|
135b00bb08 | |||
e96eef01bd | |||
c3d0531e35 | |||
623a0243ec |
@@ -27,6 +27,7 @@ xwayland {
|
||||
|
||||
# Some default env vars.
|
||||
env = XCURSOR_SIZE,24
|
||||
env = SSH_AUTH_SOCK,$XDG_RUNTIME_DIR/ssh-agent.sock
|
||||
|
||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||
input {
|
||||
@@ -146,6 +147,7 @@ bind = $mainMod, F, fullscreen
|
||||
|
||||
# Quick launch
|
||||
bind = $mainMod, F1, exec, kitty ranger
|
||||
bind = $mainMod, F2, exec, brave
|
||||
|
||||
# Media keys
|
||||
binde = , XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||
@@ -164,11 +166,11 @@ $w3 = hyprctl hyprpaper wallpaper "eDP-1,/home/datalore/Pictures/Wallpapers/gruv
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 1, exec, $w1
|
||||
# bind = $mainMod, 1, exec, $w1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 2, exec, $w2
|
||||
# bind = $mainMod, 2, exec, $w2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 3, exec, $w3
|
||||
# bind = $mainMod, 3, exec, $w3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
@@ -200,4 +202,6 @@ bindm = $mainMod, mouse:273, resizewindow
|
||||
exec-once = hyprpaper
|
||||
exec-once = waybar
|
||||
exec-once = dunst
|
||||
exec-once = /usr/lib/polkit-kde-authentication-agent-1
|
||||
exec-once = gammastep
|
||||
exec-once = swayidle -w timeout 300 'swaylock -f' timeout 360 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f' lock 'swaylock -f'
|
||||
|
23
.config/nvim/init.lua
Normal file
23
.config/nvim/init.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
-- deactivating netrw as it conflicts with nvim-tree
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
||||
vim.fn.system{'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath}
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("lazy").setup {
|
||||
"xiyaowong/transparent.nvim",
|
||||
{"willothy/nvim-cokeline", dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
}, config = true},
|
||||
{"nvim-tree/nvim-tree.lua", dependencies = {
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
}}
|
||||
}
|
||||
|
||||
require("nvim-tree").setup()
|
Reference in New Issue
Block a user