blob: 48683670cd1519e7184d90f9269b3808dccb0347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(_G.util.setup! :edgy {
:bottom [:toggleterm]
:left [:neo-tree {:ft :Outline :title (fn []
(local buf_name (vim.api.nvim_buf_get_name 0)); or "[No Name]"
(vim.fn.fnamemodify buf_name ":t")
)}]
:animate {:enabled false}
;allow other window movement binds to 'work'
:keys {:c-j (fn [win]
(win:next {:focus true :pinned false}))
:c-k (fn [win]
(win:prev {:focus true :visible true}))}
:wo {:winbar false}})
|