diff options
author | amelia squires <[email protected]> | 2024-11-13 06:17:23 -0600 |
---|---|---|
committer | amelia squires <[email protected]> | 2024-11-13 06:17:23 -0600 |
commit | 804f2a342d1b2002ad383ff604e75eb0caba8f65 (patch) | |
tree | 0c23239e32ec36f6d9e84ac4d2099194881fd180 /fnl/plugins/edgy.fnl | |
parent | e47fa485563a8a806c52f66a18471bbf012ac5c1 (diff) |
ton of new stuff
Diffstat (limited to 'fnl/plugins/edgy.fnl')
-rw-r--r-- | fnl/plugins/edgy.fnl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fnl/plugins/edgy.fnl b/fnl/plugins/edgy.fnl new file mode 100644 index 0000000..4868367 --- /dev/null +++ b/fnl/plugins/edgy.fnl @@ -0,0 +1,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}}) |