commit bf840df110ae936c819968c0cfc01f6fb2f79e18 from: amb date: Wed Apr 8 20:02:34 2026 UTC Remove horizontal split status bar and create plugin dir for packer commit - a678ec2af6b0b1370cb4e3b1c72f97dd5e35d8ab commit + bf840df110ae936c819968c0cfc01f6fb2f79e18 blob - 567ac18a2ab4b5114f8cf577b4cee1b4cb8a2e03 blob + 49c44a44f791ad1bfa7d312e8d21602e9dd62ed7 --- lazy-lock.json +++ lazy-lock.json @@ -1,7 +1,7 @@ { "conform.nvim": { "branch": "master", "commit": "086a40dc7ed8242c03be9f47fbcee68699cc2395" }, "gitsigns.nvim": { "branch": "main", "commit": "0a80125bace82d82847d40bc2c38a22d62c6dc2d" }, - "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, + "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "a979821a975897b88493843301950c456a725982" }, "mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" }, "nvim-lspconfig": { "branch": "master", "commit": "841c6d4139aedb8a3f2baf30cef5327371385b93" }, blob - be9ff19e5c77b862cf55fe370a9e24a57721bd07 blob + f5aee344cf5e31c84c553a0fe2c66c456d5c6b07 --- lua/config/options.lua +++ lua/config/options.lua @@ -65,7 +65,12 @@ vim.cmd('aunmenu PopUp') vim.api.nvim_create_augroup('nvim_popupmenu', { clear = true }) -- Remove the gigantic status bar and the command padding -vim.o.laststatus = 0 +vim.opt.laststatus = 0 +vim.opt.statusline = "%#WinSeparator#" +vim.opt.fillchars:append({ + stl = '─', + stlnc = '─' +}) -- Keep the ruller to the essential vim.opt.rulerformat = '%l,%c' blob - /dev/null blob + b876ff7f0d14267737d1104029577ff58a5b62f3 (mode 644) --- /dev/null +++ plugins/gitsigns.lua @@ -0,0 +1,22 @@ +vim.pack.add({ + 'https://github.com/lewis6991/gitsigns.nvim', +}) + +require('gitsigns').setup { + signs = { + add = { text = '+' }, + change = { text = '~' }, + delete = { text = '_' }, + topdelete = { text = '‾' }, + changedelete = { text = '~' }, + }, + current_line_blame_opts = { + virt_text = true, + virt_text_pos = 'eol', -- 'eol' | 'overlay' | 'right_align' + delay = 0, + ignore_whitespace = false, + virt_text_priority = 100, + use_focus = true, + }, + current_line_blame_formatter = ', - ', +} blob - /dev/null blob + f8e68073ce24d294c601556b11dea6837cea8e3c (mode 644) --- /dev/null +++ plugins/telescope.lua @@ -0,0 +1,7 @@ +vim.pack.add({ + 'https://github.com/nvim-lua/plenary.nvim' + 'https://github.com/nvim-telescope/telescope-ui-select.nvim' + 'https://github.com/nvim-telescope/telescope-fzf-native.nvim' + 'https://github.com/nvim-telescope/telescope.nvim' +}) +