aboutsummaryrefslogtreecommitdiff
path: root/fnl/plugins/edgy.fnl
blob: ec4c77cc378224706487cc86c4eef7a4700dbb1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(_G.util.setup! :edgy {
  :options {
    :bottom {:size 9}
  }
  :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}})