This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Background colors for active vs inactive windows | |
hi ActiveWindow guibg=#17252c | |
hi InactiveWindow guibg=#0D1B22 | |
" Call method on window enter | |
augroup WindowManagement | |
autocmd! | |
autocmd WinEnter * call Handle_Win_Enter() | |
augroup END |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "dz60.h" | |
#define MODS_SHIFT_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT)) | |
enum custom_keycodes { | |
KX_UMLAUT_A = SAFE_RANGE, | |
KX_UMLAUT_O, | |
KX_UMLAUT_U, | |
KX_UMLAUT_S, |