summaryrefslogtreecommitdiff
path: root/fnl/config/autocmd.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-05-24 23:44:51 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-05-24 23:44:51 +0200
commit0280bb06733c6ea3de087cc7b72decb3f7d41a17 (patch)
tree66b6ebcda4d3dd6957f92d40c655bfce6c418d73 /fnl/config/autocmd.fnl
parentcb129352321700c03b0ba24cf8c30dbb6b37b024 (diff)
Remove bufferline and the tabline all together
Diffstat (limited to 'fnl/config/autocmd.fnl')
-rw-r--r--fnl/config/autocmd.fnl4
1 files changed, 0 insertions, 4 deletions
diff --git a/fnl/config/autocmd.fnl b/fnl/config/autocmd.fnl
index 911d8dc..7c65654 100644
--- a/fnl/config/autocmd.fnl
+++ b/fnl/config/autocmd.fnl
@@ -3,10 +3,6 @@
(defn- autocmd [event opts] (nvim.create_autocmd event opts))
-(autocmd :User
- {:pattern :AlphaReady
- :command "set showtabline=0 | autocmd BufUnload <buffer> set showtabline=2"})
-
(autocmd :BufEnter
{:command "if winnr('$') == 1 && bufname() == 'NvimTree_' . tabpagenr() | quit | endif"})