Add commitlint and wezterm shortcuts that are more similar to zellij

main
Julius Riegel 1 month ago
parent 09a127e1d5
commit ba609a26f6

@ -25,6 +25,13 @@ tools:
- '%l: %m: "%r"'
- '%l: %m'
gitcommit-commitlint: &gitcommit-commitlint
lint-command: 'commitlint'
lint-stdin: true
lint-formats:
- '%l: %m: "%r"'
- '%l: %m'
html-prettier: &html-prettier
format-command: './node_modules/.bin/prettier ${--tab-width:tabWidth} ${--single-quote:singleQuote} --parser html'
@ -112,6 +119,7 @@ languages:
gitcommit:
- <<: *gitcommit-gitlint
- <<: *gitcommit-commitlint
html:
- <<: *html-prettier

@ -123,10 +123,14 @@ config.keys = {
key = 'LeftArrow',
mods = 'SHIFT',
action = act.ActivateTabRelative(-1)
}, {
key = 'l',
mods = 'SHIFT | ALT',
action = act.ActivateTabRelative(1)
},
{
key = 'w',
mods = 'CTRL|SHIFT',
key = 'h',
mods = 'SHIFT | ALT',
action = act.ActivateTabRelative(-1)
},
{

@ -56,6 +56,7 @@ config.modules = {
'onefetch',
'efm-langserver',
'gitlint',
'commitlint',
},
gui = mod {
'kdePackages.breeze-icons',

Loading…
Cancel
Save