From 1a1e70f440a0ee147e2ff6c9015bf350a318e392 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Mon, 18 Jul 2022 01:31:52 +0200 Subject: Remove icon from winbar --- fnl/config/winbar.fnl | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) (limited to 'fnl/config') diff --git a/fnl/config/winbar.fnl b/fnl/config/winbar.fnl index 9f9cbb3..d87d2f1 100644 --- a/fnl/config/winbar.fnl +++ b/fnl/config/winbar.fnl @@ -23,24 +23,10 @@ (defn- ignore [] (. ignore-filetypes (get-filetype))) -(defn- get-icon [] (let [(ok? devicons) (pcall require :nvim-web-devicons)] - (if ok? - (let [filename (get-filename) - extension (get-extension)] - (if (not (is-empty filename)) - (let [(icon _) (devicons.get_icon filename - extension)] - icon)))))) - (defn- get-winbar [] - (if (and (not= (ignore) true) (not= (is-empty (get-filename)) true)) - (let [icon (get-icon)] - (if (not= icon nil) - (vim.api.nvim_set_option_value :winbar - (.. " " icon " " "%t%m") - {:scope :local}) - (vim.api.nvim_set_option_value :winbar (.. " " "%t%m") - {:scope :local}))) + (if (and (not= (ignore) true) (not= (is-empty (get-filetype)) true)) + (vim.api.nvim_set_option_value :winbar (.. " " "%t%m") + {:scope :local}) (vim.api.nvim_set_option_value :winbar "" {:scope :local}))) (nvim.create_autocmd "BufEnter,CursorMoved,CursorHold,BufWinEnter,BufFilePost,InsertEnter,BufWritePost,TabClosed" -- cgit v1.2.3-70-g09d2