Skip to content

Commit

Permalink
config(nvim): add sql to tree-sitter parsers
Browse files Browse the repository at this point in the history
Use kdlfmt to format the zellij config
  • Loading branch information
haunt98 committed Nov 18, 2024
1 parent 7568a15 commit 935df74
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
1 change: 1 addition & 0 deletions data/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ require("lazy").setup({
"proto",
"python",
"query",
"sql",
"toml",
"typst",
"vim",
Expand Down
26 changes: 18 additions & 8 deletions data/zellij/config.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}

0 comments on commit 935df74

Please sign in to comment.