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 | ef49ada08c0ff2d8c2abb41e1b5826c1b009b511 (patch) | |
| tree | d3d48f735274288daa93471272a5c4cf2a7c5d44 /nvim/lua/kickstart/plugins/statusline.lua | |
| parent | 680cbcfa353885c9c02cfc6f829ab6891a3bb10d (diff) | |
| download | dots-ef49ada08c0ff2d8c2abb41e1b5826c1b009b511.tar.gz | |
Refactor theme and status line into their own file
Diffstat (limited to 'nvim/lua/kickstart/plugins/statusline.lua')
| -rw-r--r-- | nvim/lua/kickstart/plugins/statusline.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nvim/lua/kickstart/plugins/statusline.lua b/nvim/lua/kickstart/plugins/statusline.lua new file mode 100644 index 0000000..f54393f --- /dev/null +++ b/nvim/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 = '', + }, + }, +} + |