summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/stl.lua
diff options
context:
space:
mode:
authorAdam <56338480+adastx@users.noreply.github.com>2021-10-05 21:12:16 +0200
committerAdam <56338480+adastx@users.noreply.github.com>2021-10-05 21:12:16 +0200
commit59e7ee298127e69c8472bb6a0930c5a105f5d12e (patch)
tree76b3984f127cae61306a3bc87715417fb679a906 /.config/nvim/lua/stl.lua
parentcf353a03de1fd6e0536663c8a0be9608cc59e985 (diff)
Neovim setup ported to lua + new plugins, picom edit so focused terminal is opaque
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..1f5f47f
--- /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 = {}
+ },
+ 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 = {}
+}