1
Fork 0

feat: more nvim tweaks ig

This commit is contained in:
Matei Adriel 2022-05-17 00:03:35 +03:00
parent 92caa088aa
commit 936a9cfea0
8 changed files with 32 additions and 13 deletions
modules/applications/xmonad

View file

@ -14,6 +14,7 @@ import XMonad.Layout.Spacing
import XMonad.Layout.ThreeColumns
import XMonad.Operations
import XMonad.Util.EZConfig
import XMonad.Layout.NoBorders
kdeOn :: Bool
kdeOn = False
@ -31,7 +32,8 @@ main =
manageHook = manageDocks <+> myManagerHook <+> manageHook kdeConfig,
handleEventHook = handleEventHook kdeConfig <+> fullscreenEventHook,
terminal = myTerminal,
workspaces = myWorkspaces
workspaces = myWorkspaces,
borderWidth = 0
}
`additionalKeysP` keymap
where

View file

@ -12,6 +12,18 @@
# home.file.".config/plasma-workspace/env/set_window_manager.sh".text =
# "export KDEWM=/home/adrielus/.nix-profile/bin/xmonad";
services.picom = { enable = true; };
services.picom = {
enable = true;
blur = true;
shadow = true;
extraOptions = ''
blur:
{
method = "gaussian";
size = 10;
deviation = 5.0;
};
'';
};
};
}