diff options
| author | kkard2 <[email protected]> | 2023-09-28 16:44:24 +0200 |
|---|---|---|
| committer | kkard2 <[email protected]> | 2023-09-28 16:44:24 +0200 |
| commit | ffd09654cb396790ee05c87291cd1d911be9959f (patch) | |
| tree | f579286d68bee7b79acfd41b9ce15f762768cfe4 /nvim/lua/kkard2/lazy.lua | |
| parent | 435ccf6ff96880cac327ef3f98ece2c9cae50193 (diff) | |
commentary and more vimish lualine
Diffstat (limited to 'nvim/lua/kkard2/lazy.lua')
| -rw-r--r-- | nvim/lua/kkard2/lazy.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nvim/lua/kkard2/lazy.lua b/nvim/lua/kkard2/lazy.lua index e4029ef..13efaf0 100644 --- a/nvim/lua/kkard2/lazy.lua +++ b/nvim/lua/kkard2/lazy.lua @@ -31,7 +31,12 @@ require("lazy").setup({ }, { "nvim-lualine/lualine.nvim", - config = function() require("lualine").setup({}) end, + config = function() require("lualine").setup({ + options = { + component_separators = { left = " ", right = " " }, + section_separators = { left = " ", right = " " }, + }, + }) end, }, { "nvim-telescope/telescope.nvim", @@ -90,4 +95,6 @@ require("lazy").setup({ { "github/copilot.vim" }, { "https://tpope.io/vim/repeat.git" }, { "https://tpope.io/vim/surround.git" }, + -- i also don't know why the above ones are like this + { "tpope/vim-commentary" }, }) |
