diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-31 20:56:27 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-31 20:56:27 +0530 |
commit | ab70e0c0f8919ed1831ed6871d5b484910e8aeb6 (patch) | |
tree | e1751c70fde24ccf75f23eabc7bc05d73fad678b | |
parent | 35f98c0588c1164fdeaddff348246fb5408a89fd (diff) | |
download | dwm-ab70e0c0f8919ed1831ed6871d5b484910e8aeb6.tar.gz dwm-ab70e0c0f8919ed1831ed6871d5b484910e8aeb6.tar.bz2 dwm-ab70e0c0f8919ed1831ed6871d5b484910e8aeb6.zip |
Updating changes
-rw-r--r-- | .dir-locals.el | 3 | ||||
-rw-r--r-- | config.h | 2 | ||||
-rw-r--r-- | dwm.1 | 12 |
3 files changed, 12 insertions, 5 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index f7ea9f8..6b0bf74 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,5 +2,4 @@ ;;; For more information see (info "(emacs) Directory Variables") ((c-mode . ((indent-tabs-mode . t) - (flycheck-mode . nil) - (eval . (clang-format-mode 0))))) + (flycheck-mode . -1)))) @@ -62,7 +62,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ @@ -93,11 +93,19 @@ Focus previous window .TP .B Mod\-. -Increase gap size +Increase gap size by 5 .TP .B Mod\-, -Decrease gap size +Decrease gap size by 5 + +.TP +.B Mod\-Control\-. +Increase gap size by 1 + +.TP +.B Mod\-Control\-, +Decrease gap size by 1 .TP .B Mod\-/ |