forked from Shinonome/dots-hyprland
18 lines
624 B
JavaScript
18 lines
624 B
JavaScript
|
|
const userConfigOptions = {
|
|
// For every option, see ~/.config/ags/modules/.configuration/user_options.js
|
|
// (tip4vscode: `ctrl+click` this: file://./modules/.configuration/user_options.js)
|
|
// (tip4vim: `:vsp` to split window, move cursor to this path, press `gf`. `Ctrl-w` twice to switch between)
|
|
// 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;
|