From ca3ccc842c919e42ff21382a62d23a74e31b39dc Mon Sep 17 00:00:00 2001 From: Matthew Wozniak Date: Sat, 6 Jan 2024 23:44:23 -0500 Subject: add fugitive, better gui settings for windows --- after/plugin/lualine.lua | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'after/plugin/lualine.lua') diff --git a/after/plugin/lualine.lua b/after/plugin/lualine.lua index 20de644..1d60a17 100644 --- a/after/plugin/lualine.lua +++ b/after/plugin/lualine.lua @@ -1,7 +1,16 @@ -require('lualine').setup { - options = { - component_separators = { left = '', right = ''}, - section_separators = { left = '', right = ''}, --- theme = require('lualine.themes.powerline'), - } -} +if vim.fn.has('gui_running') then + require('lualine').setup { + options = { + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + theme = require('lualine.themes.powerline'), + } + } +else + require('lualine').setup { + options = { + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + } + } +end -- cgit v1.2.3-54-g00ecf