summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkkard2 <[email protected]>2023-09-28 16:44:24 +0200
committerkkard2 <[email protected]>2023-09-28 16:44:24 +0200
commitffd09654cb396790ee05c87291cd1d911be9959f (patch)
treef579286d68bee7b79acfd41b9ce15f762768cfe4
parent435ccf6ff96880cac327ef3f98ece2c9cae50193 (diff)
commentary and more vimish lualine
-rw-r--r--nvim/lazy-lock.json3
-rw-r--r--nvim/lua/kkard2/lazy.lua9
2 files changed, 10 insertions, 2 deletions
diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json
index 4766890..b49ec71 100644
--- a/nvim/lazy-lock.json
+++ b/nvim/lazy-lock.json
@@ -18,5 +18,6 @@
"surround": { "branch": "master", "commit": "3d188ed2113431cf8dac77be61b842acb64433d9" },
"telescope.nvim": { "branch": "master", "commit": "776b509f80dd49d8205b9b0d94485568236d1192" },
"trouble.nvim": { "branch": "main", "commit": "3f85d8ed30e97ceeddbbcf80224245d347053711" },
- "undotree": { "branch": "master", "commit": "0e11ba7325efbbb3f3bebe06213afa3e7ec75131" }
+ "undotree": { "branch": "master", "commit": "0e11ba7325efbbb3f3bebe06213afa3e7ec75131" },
+ "vim-commentary": { "branch": "master", "commit": "e87cd90dc09c2a203e13af9704bd0ef79303d755" }
} \ No newline at end of file
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" },
})