config(nvim): add sql to tree-sitter parsers
Use kdlfmt to format the zellij configmain
parent
7568a152a1
commit
935df74882
|
@ -430,6 +430,7 @@ require("lazy").setup({
|
||||||
"proto",
|
"proto",
|
||||||
"python",
|
"python",
|
||||||
"query",
|
"query",
|
||||||
|
"sql",
|
||||||
"toml",
|
"toml",
|
||||||
"typst",
|
"typst",
|
||||||
"vim",
|
"vim",
|
||||||
|
|
|
@ -4,20 +4,30 @@ default_mode "locked"
|
||||||
on_force_close "quit"
|
on_force_close "quit"
|
||||||
simplified_ui true
|
simplified_ui true
|
||||||
pane_frames false
|
pane_frames false
|
||||||
|
|
||||||
ui {
|
ui {
|
||||||
pane_frames {
|
pane_frames {
|
||||||
hide_session_name true
|
hide_session_name true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
keybinds {
|
keybinds {
|
||||||
shared {
|
shared {
|
||||||
bind "Alt p" { SwitchFocus; }
|
bind "Alt p" {
|
||||||
bind "Alt o" { NewTab; }
|
SwitchFocus
|
||||||
bind "Alt ]" { GoToNextTab; }
|
}
|
||||||
bind "Alt [" { GoToPreviousTab; }
|
bind "Alt o" {
|
||||||
bind "Alt n" { NewPane; }
|
NewTab
|
||||||
bind "Alt m" { NewPane "Down"; }
|
}
|
||||||
|
bind "Alt ]" {
|
||||||
|
GoToNextTab
|
||||||
|
}
|
||||||
|
bind "Alt [" {
|
||||||
|
GoToPreviousTab
|
||||||
|
}
|
||||||
|
bind "Alt n" {
|
||||||
|
NewPane
|
||||||
|
}
|
||||||
|
bind "Alt m" {
|
||||||
|
NewPane "Down"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue