summaryrefslogtreecommitdiff
path: root/after/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'after/plugin')
-rw-r--r--after/plugin/cfg.vim4
-rw-r--r--after/plugin/lualine.lua23
2 files changed, 18 insertions, 9 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim
index 14aa4e4..94659fc 100644
--- a/after/plugin/cfg.vim
+++ b/after/plugin/cfg.vim
@@ -12,11 +12,11 @@ set guioptions-=r
set guioptions-=R
set guioptions-=l
set guioptions-=L
-set gfn=DejaVuSansM\ Nerd\ Font\ Mono:h12
+set gfn=Fira\ Code:h12
set noshowmode
if !has('gui_running')
colorscheme dim
else
- colorscheme habamax
+ colorscheme monochrome
endif
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