config(nvim): add sql to tree-sitter parsers

Use kdlfmt to format the zellij config
main
sudo pacman -Syu 2024-11-18 09:18:16 +07:00
parent 7568a152a1
commit 935df74882
2 changed files with 19 additions and 8 deletions

View File

@ -430,6 +430,7 @@ require("lazy").setup({
"proto",
"python",
"query",
"sql",
"toml",
"typst",
"vim",

View File

@ -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"
}
}
}