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",
|
||||
"python",
|
||||
"query",
|
||||
"sql",
|
||||
"toml",
|
||||
"typst",
|
||||
"vim",
|
||||
|
|
|
@ -4,20 +4,30 @@ default_mode "locked"
|
|||
on_force_close "quit"
|
||||
simplified_ui true
|
||||
pane_frames false
|
||||
|
||||
ui {
|
||||
pane_frames {
|
||||
hide_session_name true
|
||||
}
|
||||
}
|
||||
|
||||
keybinds {
|
||||
shared {
|
||||
bind "Alt p" { SwitchFocus; }
|
||||
bind "Alt o" { NewTab; }
|
||||
bind "Alt ]" { GoToNextTab; }
|
||||
bind "Alt [" { GoToPreviousTab; }
|
||||
bind "Alt n" { NewPane; }
|
||||
bind "Alt m" { NewPane "Down"; }
|
||||
bind "Alt p" {
|
||||
SwitchFocus
|
||||
}
|
||||
bind "Alt o" {
|
||||
NewTab
|
||||
}
|
||||
bind "Alt ]" {
|
||||
GoToNextTab
|
||||
}
|
||||
bind "Alt [" {
|
||||
GoToPreviousTab
|
||||
}
|
||||
bind "Alt n" {
|
||||
NewPane
|
||||
}
|
||||
bind "Alt m" {
|
||||
NewPane "Down"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue