From c76362b9133e6b92c3225ca0f28221795e955373 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Fri, 14 Oct 2022 21:44:22 +0200 Subject: [PATCH] fixed stuff --- init.lua | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/init.lua b/init.lua index 8e7eee5..0ebc908 100644 --- a/init.lua +++ b/init.lua @@ -207,7 +207,6 @@ local config = { after = "telescope.nvim", config = function() require("telescope").load_extension "file_browser" end, }, - { "ahmedkhalf/project.nvim", after = "telescope.nvim", @@ -257,13 +256,17 @@ local config = { }, { "pwntester/octo.nvim", - requires = { - "nvim-lua/plenary.nvim", - "nvim-telescope/telescope.nvim", - "kyazdani42/nvim-web-devicons", - }, + after = "telescope.nvim", config = function() require("octo").setup() end, }, + { + "~/git/git.front.kjuulh.io/kjuulh/github-presense", + config = function() require("github_presence").setup {} end, + }, + { + "~/git/git.front.kjuulh.io/kjuulh/ranger.nvim", + config = function() require("ranger").setup {} end, + }, -- You can disable default plugins as follows: -- ["goolord/alpha-nvim"] = { disable = true }, @@ -313,7 +316,7 @@ local config = { }, -- use mason-null-ls to configure Formatters/Linter installation for null-ls sources ["mason-null-ls"] = { -- overrides `require("mason-null-ls").setup(...)` - -- ensure_installed = { "prettier", "stylua" }, + ensure_installed = { "prettier", "stylua" }, }, }, @@ -354,6 +357,7 @@ local config = { -- group name in which-key top level menu ["b"] = { name = "Buffer" }, ["P"] = { "Telescope projects", "projects" }, + ["."] = { "Ranger", "ranger" }, }, }, },