diff options
author | adamstuck <adam.moloney.stuck@gmail.com> | 2022-03-12 17:38:32 +0100 |
---|---|---|
committer | adamstuck <adam.moloney.stuck@gmail.com> | 2022-03-12 22:47:03 +0100 |
commit | 8cc68ac8a50756dfc21ce269a969bd7897e173fd (patch) | |
tree | f05d8b44e06d6166115a3b68d30239941fd34931 /.config/nvim/lua/stl.lua | |
parent | d394e7dc27de4416f3ba74da736a5251c19a36f4 (diff) |
nvim: config cleanup + speedup (lazy load)
Diffstat (limited to '.config/nvim/lua/stl.lua')
-rw-r--r-- | .config/nvim/lua/stl.lua | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/lua/stl.lua b/.config/nvim/lua/stl.lua deleted file mode 100644 index 241e0ff..0000000 --- a/.config/nvim/lua/stl.lua +++ /dev/null @@ -1,27 +0,0 @@ -require'lualine'.setup { - options = { - icons_enabled = true, - theme = 'onedark', - component_separators = {left = '', right = ''}, - section_separators = {left = '', right = ''}, - disabled_filetypes = {'startify', 'terminal', 'netrw'} - }, - sections = { - lualine_a = {'mode'}, - lualine_b = {'branch'}, - lualine_c = {'filename'}, - lualine_x = {'encoding', 'filetype'}, - lualine_y = {'progress'}, - lualine_z = {'location'} - }, - inactive_sections = { - lualine_a = {}, - lualine_b = {}, - lualine_c = {'filename'}, - lualine_x = {'location'}, - lualine_y = {}, - lualine_z = {} - }, - tabline = {}, - extensions = {} -} |