* Fixed plank keymaps so that they will compile for planck light * tv44:budi now compiles * s60_x:amnesia0287 now compiles * Fixed allocation of key_combos so that narze keymap for planck can compile correctly * Disabled rgb on ergodone and infinity * Enabled tap dance so it compiles * Added return statement so it compiles * If compiling on light disable extra functionality * Properly redefined variable so it compiles
		
			
				
	
	
		
			23 lines
		
	
	
		
			576 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			576 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef CONFIG_USER_H
 | |
| #define CONFIG_USER_H
 | |
| 
 | |
| #include "../../config.h"
 | |
| 
 | |
| // place overrides here
 | |
| #ifdef DEBOUNCING_DELAY
 | |
| #undef DEBOUNCING_DELAY
 | |
| #endif
 | |
| #define DEBOUNCING_DELAY 2
 | |
| #define MOUSEKEY_INTERVAL           10
 | |
| #define MOUSEKEY_DELAY              0
 | |
| #define MOUSEKEY_TIME_TO_MAX        120
 | |
| #define MOUSEKEY_MAX_SPEED          9
 | |
| #define MOUSEKEY_WHEEL_DELAY        0
 | |
| #define MOUSEKEY_WHEEL_MAX_SPEED    2
 | |
| #define MOUSEKEY_WHEEL_TIME_TO_MAX  120
 | |
| #define TAPPING_TOGGLE         1
 | |
| #define TAPPING_TERM           200
 | |
| #define IGNORE_MOD_TAP_INTERRUPT
 | |
| #define FORCE_NKRO
 | |
| #endif
 |