diff options
author | Chris Patti <feoh@feoh.org> | 2023-06-03 10:11:10 -0400 |
---|---|---|
committer | Chris Patti <feoh@feoh.org> | 2023-06-03 10:11:58 -0400 |
commit | cdaa750c86cfc0c8f2fc1c8638b7296c327bf5a9 (patch) | |
tree | fc98865cd810aa91c8c245b6f20c9fdda0bd0e2f /lua/kickstart/plugins/statusline.lua | |
parent | e15e7f4bda880b17c89327003877c6cff55d7958 (diff) |
Refactor theme and status line into their own file
Diffstat (limited to 'lua/kickstart/plugins/statusline.lua')
-rw-r--r-- | lua/kickstart/plugins/statusline.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/kickstart/plugins/statusline.lua b/lua/kickstart/plugins/statusline.lua new file mode 100644 index 0000000..f54393f --- /dev/null +++ b/lua/kickstart/plugins/statusline.lua @@ -0,0 +1,14 @@ +return { + -- Set lualine as statusline + 'nvim-lualine/lualine.nvim', + -- See `:help lualine.txt` + opts = { + options = { + icons_enabled = false, + theme = 'tokyonight', + component_separators = '|', + section_separators = '', + }, + }, +} + |