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", "proto",
"python", "python",
"query", "query",
"sql",
"toml", "toml",
"typst", "typst",
"vim", "vim",

View File

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