diff --git a/dot_config/nvim/lua/keybinds.lua b/dot_config/nvim/lua/keybinds.lua index 8d58685..4c46da5 100644 --- a/dot_config/nvim/lua/keybinds.lua +++ b/dot_config/nvim/lua/keybinds.lua @@ -10,8 +10,9 @@ local leader_keymap = { b = { name = "+buffers", b = {"Telescope buffers", "List buffers"}, - [""] = {"b#", "Goto other buffer"}, + d = {"bd", "Delete buffer"} }, + [""] = {"b#", "Goto other buffer"}, w = { name = "+window", v = {"vsplit", "Split vertically"}, @@ -39,6 +40,12 @@ local leader_keymap = { S = {"Telescope lsp_workspace_symbols", "List workspace symbols"}, d = {"Telescope lsp_definitions", "Goto definition"}, }, + g = { + name = "+git", + s = {"Telescope git_status", "Status"}, + g = {"Neogit", "Neogit"}, + c = {"Neogit commit", "Commit"}, + }, } wk.register_keymap("leader", leader_keymap) diff --git a/dot_config/nvim/lua/plugins.lua b/dot_config/nvim/lua/plugins.lua index ae8f5e7..f885038 100644 --- a/dot_config/nvim/lua/plugins.lua +++ b/dot_config/nvim/lua/plugins.lua @@ -36,9 +36,14 @@ return require("packer").startup(function(use) use "hrsh7th/cmp-cmdline" use({"hrsh7th/nvim-cmp", config = function() require("plugins.completion") end}) + -- Text editing + use "tpope/vim-surround" + use "Raimondi/delimitMate" + -- Fancy UI stuff use "RRethy/nvim-base16" use "stevearc/dressing.nvim" + use({"lewis6991/gitsigns.nvim", config = function() require("gitsigns").setup() end}) use({"nvim-lualine/lualine.nvim", config = function() require("lualine").setup({ options = { @@ -49,6 +54,14 @@ return require("packer").startup(function(use) }, }) end}) + use({"kdheepak/tabline.nvim", config = function() + require("tabline").setup({ + options = { + show_devicons = false, + modified_icon = "#", + }, + }) + end}) -- Keybinds use({ @@ -58,5 +71,6 @@ return require("packer").startup(function(use) -- File interaction use({"nvim-telescope/telescope.nvim", config = function () end}) + use({"TimUntersberger/neogit", config = function () require("neogit").setup({}) end}) end)