From f4836eede88b34068ea67b4dc221881869258b3d Mon Sep 17 00:00:00 2001 From: Brandon Conway Date: Sat, 3 Jul 2021 22:28:33 -0700 Subject: Fix typo (#636) --- lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/plugins.lua') diff --git a/lua/plugins.lua b/lua/plugins.lua index 0a59ae8d..9308fc75 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -378,7 +378,7 @@ return require("packer").startup(function(use) cmd = "LazyGit", disable = not O.plugin.lazygit.active } - -- Lazygit + -- Octo use { "pwntester/octo.nvim", event = "BufRead", -- cgit v1.2.3 From c899acb744a9cd87f1d3cea642f7ad13e9b5c56a Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Sun, 4 Jul 2021 01:31:08 -0400 Subject: using bufferline, barbar had too many conflicts unfortunately --- lua/plugins.lua | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) (limited to 'lua/plugins.lua') diff --git a/lua/plugins.lua b/lua/plugins.lua index 0a59ae8d..b1784224 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -46,12 +46,12 @@ return require("packer").startup(function(use) } -- Snap TODO disable for now, need to only install fzy when user specifies they want to use snap -- use { - -- "camspiers/snap", - -- rocks = "fzy", - -- config = function() - -- require("lv-snap").config() - -- end, - -- disable = not O.plugin.snap.active + -- "camspiers/snap", + -- rocks = "fzy", + -- config = function() + -- require("lv-snap").config() + -- end, + -- disable = not O.plugin.snap.active -- } -- Autocomplete use { @@ -114,15 +114,9 @@ return require("packer").startup(function(use) use {"glepnir/galaxyline.nvim"} use { - "romgrk/barbar.nvim", - + "akinsho/nvim-bufferline.lua", config = function() - vim.api.nvim_set_keymap('n', '', ':BufferNext', - {noremap = true, silent = true}) - vim.api.nvim_set_keymap('n', '', ':BufferPrevious', - {noremap = true, silent = true}) - vim.api.nvim_set_keymap('n', '', ':BufferClose', - {noremap = true, silent = true}) + require("lv-bufferline").config() end, event = "BufRead" @@ -228,8 +222,9 @@ return require("packer").startup(function(use) vim.g.indentLine_enabled = 1 vim.g.indent_blankline_char = "▏" - vim.g.indent_blankline_filetype_exclude = - {"help", "terminal", "dashboard"} + vim.g.indent_blankline_filetype_exclude = { + "help", "terminal", "dashboard" + } vim.g.indent_blankline_buftype_exclude = {"terminal"} vim.g.indent_blankline_show_trailing_blankline_indent = false @@ -401,7 +396,7 @@ return require("packer").startup(function(use) use { "rktjmp/lush.nvim", -- cmd = {"LushRunQuickstart", "LushRunTutorial", "Lushify"}, - disable = not O.plugin.lush.active, + disable = not O.plugin.lush.active } -- HTML preview use { -- cgit v1.2.3