forked from Shinonome/dots-hyprland
15 lines
501 B
JavaScript
15 lines
501 B
JavaScript
|
|
const userConfigOptions = {
|
|
// For every option, see ~/.config/ags/modules/.configuration/user_options.js (vscode users ctrl+click this file://./modules/.configuration/user_options.js)
|
|
// Options listed in this file will override the default ones in the above file
|
|
// Here's an example
|
|
'keybinds': {
|
|
'sidebar': {
|
|
'pin': "Ctrl+p",
|
|
'nextTab': "Ctrl+Page_Down",
|
|
'prevTab': "Ctrl+Page_Up",
|
|
},
|
|
},
|
|
}
|
|
|
|
export default userConfigOptions; |