diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index c32abab..218c2ea 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -1,11 +1,13 @@ { "LuaSnip": { "branch": "master", "commit": "50fcf17db7c75af80e6b6109acfbfb4504768780" }, - "bufferline.nvim": { "branch": "main", "commit": "99337f63f0a3c3ab9519f3d1da7618ca4f91cffe" }, + "barbar.nvim": { "branch": "master", "commit": "d181f2cfd4b828f9c6f1e10e69c68241de59f54f" }, "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, "dashboard-nvim": { "branch": "master", "commit": "b88c997f468a1bacb1e9b13ff3b567638caa06e6" }, "dracula.nvim": { "branch": "master", "commit": "194f10d0312236164f3865d404b4bcdcfd41deb7" }, "friendly-snippets": { "branch": "main", "commit": "682157939e57bd6a2c86277dfd4d6fbfce63dbac" }, + "gitsigns.nvim": { "branch": "main", "commit": "8df63f2ddc615feb71fd4aee45a4cee022876df1" }, + "indent-blankline.nvim": { "branch": "master", "commit": "d98f537c3492e87b6dc6c2e3f66ac517528f406f" }, "lazy.nvim": { "branch": "main", "commit": "bc620783663ab09d16bff9fdecc07da65b2a1528" }, "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" }, "mason.nvim": { "branch": "main", "commit": "0950b15060067f752fde13a779a994f59516ce3d" }, diff --git a/nvim/lazyvim.json b/nvim/lazyvim.json deleted file mode 100644 index b1aed37..0000000 --- a/nvim/lazyvim.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extras": [ - - ], - "news": { - "NEWS.md": "6077" - }, - "version": 6 -} \ No newline at end of file diff --git a/nvim/lua/plugins/barbar.lua b/nvim/lua/plugins/barbar.lua new file mode 100644 index 0000000..105d466 --- /dev/null +++ b/nvim/lua/plugins/barbar.lua @@ -0,0 +1,18 @@ +return { + 'romgrk/barbar.nvim', + dependencies = { + 'lewis6991/gitsigns.nvim', + 'nvim-tree/nvim-web-devicons' + }, + init = function () vim.g.barbar_auto_setup = false end, + opts = { + animation = true, + auto_hide = 0, + + preset = 'slanted', + + sidebar_filetypes = { + ['neo-tree'] = true + } + } +} diff --git a/nvim/lua/plugins/bufferline.lua b/nvim/lua/plugins/bufferline.lua deleted file mode 100644 index 94b1a98..0000000 --- a/nvim/lua/plugins/bufferline.lua +++ /dev/null @@ -1,28 +0,0 @@ -return { - { - 'akinsho/bufferline.nvim', - config = function () - require('bufferline').setup { - options = { - separator_style = "thin", - indicator = { - style = "none" - }, - diagnostics = "nvim_lsp", - always_show_bufferline = false, - offsets = { - { - filetype = "neo-tree", - text = "Explorer", - highlight = "directory", - separator = false - } - } - } - } - end, - dependencies = { - 'nvim-tree/nvim-web-devicons', - }, - }, -} diff --git a/nvim/lua/plugins/indent-blankline.lua b/nvim/lua/plugins/indent-blankline.lua new file mode 100644 index 0000000..5c49f95 --- /dev/null +++ b/nvim/lua/plugins/indent-blankline.lua @@ -0,0 +1,9 @@ +return { + 'lukas-reineke/indent-blankline.nvim', + main = "ibl", + opts = { + indent = { + char = "│" + } + } +}