summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/stl.lua
diff options
context:
space:
mode:
authoradamstuck <adam.moloney.stuck@gmail.com>2021-10-11 12:57:12 +0200
committeradamstuck <adam.moloney.stuck@gmail.com>2021-10-11 12:57:12 +0200
commit0f1e82e9130acdb63e985548b750383bacc70df9 (patch)
tree85cd7524cded1fe8eecf750280e80d7ab575521d /.config/nvim/lua/stl.lua
parentd7d28a71cec270d00742c9037a109ffa4040933c (diff)
Setup nvim on laptop
Diffstat (limited to '.config/nvim/lua/stl.lua')
-rw-r--r--.config/nvim/lua/stl.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/nvim/lua/stl.lua b/.config/nvim/lua/stl.lua
new file mode 100644
index 0000000..f751506
--- /dev/null
+++ b/.config/nvim/lua/stl.lua
@@ -0,0 +1,27 @@
+require'lualine'.setup {
+ options = {
+ icons_enabled = true,
+ theme = 'gruvbox',
+ component_separators = {'', ''},
+ section_separators = {'', ''},
+ disabled_filetypes = {'startify', 'NvimTree', 'toggleterm'}
+ },
+ 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 = {}
+}