fixed stuff

This commit is contained in:
Kasper Juul Hermansen 2022-10-14 21:44:22 +02:00
parent 2fcafc9f35
commit c76362b913
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -207,7 +207,6 @@ local config = {
after = "telescope.nvim", after = "telescope.nvim",
config = function() require("telescope").load_extension "file_browser" end, config = function() require("telescope").load_extension "file_browser" end,
}, },
{ {
"ahmedkhalf/project.nvim", "ahmedkhalf/project.nvim",
after = "telescope.nvim", after = "telescope.nvim",
@ -257,13 +256,17 @@ local config = {
}, },
{ {
"pwntester/octo.nvim", "pwntester/octo.nvim",
requires = { after = "telescope.nvim",
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"kyazdani42/nvim-web-devicons",
},
config = function() require("octo").setup() end, 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: -- You can disable default plugins as follows:
-- ["goolord/alpha-nvim"] = { disable = true }, -- ["goolord/alpha-nvim"] = { disable = true },
@ -313,7 +316,7 @@ local config = {
}, },
-- use mason-null-ls to configure Formatters/Linter installation for null-ls sources -- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
["mason-null-ls"] = { -- overrides `require("mason-null-ls").setup(...)` ["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 -- group name in which-key top level menu
["b"] = { name = "Buffer" }, ["b"] = { name = "Buffer" },
["P"] = { "<cmd>Telescope projects<cr>", "projects" }, ["P"] = { "<cmd>Telescope projects<cr>", "projects" },
["."] = { "<cmd>Ranger<cr>", "ranger" },
}, },
}, },
}, },