with stff

This commit is contained in:
Kasper Juul Hermansen 2022-10-13 13:53:13 +02:00
parent e5b46e5934
commit 83a39a0caa
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -89,7 +89,7 @@ local config = {
bg = "#1e222a",
},
highlights = function(hl) -- or a function that returns a new table of colors to set
local C = require "default_theme.colors"
local C = require("default_theme.colors")
hl.Normal = { fg = C.fg, bg = C.bg }
@ -205,14 +205,16 @@ local config = {
{
"nvim-telescope/telescope-file-browser.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",
after = "telescope.nvim",
config = function()
require("project_nvim").setup {
require("project_nvim").setup({
-- Manual mode doesn't automatically change your root directory, so you have
-- the option to manually do so using `:ProjectRoot` command.
manual_mode = false,
@ -250,9 +252,9 @@ local config = {
-- Path where project.nvim will store the project history for use in
-- telescope
datapath = vim.fn.stdpath "data",
}
require("telescope").load_extension "projects"
datapath = vim.fn.stdpath("data"),
})
require("telescope").load_extension("projects")
end,
},
{
@ -263,7 +265,9 @@ local config = {
"nvim-telescope/telescope.nvim",
"kyazdani42/nvim-web-devicons",
},
config = function() require("octo").setup() end,
config = function()
require("octo").setup()
end,
},
-- You can disable default plugins as follows:
-- ["goolord/alpha-nvim"] = { disable = true },
@ -290,7 +294,7 @@ local config = {
-- All other entries override the require("<key>").setup({...}) call for default plugins
["null-ls"] = function(config) -- overrides `require("null-ls").setup(config)`
-- config variable is the default configuration table for the setup function call
local null_ls = require "null-ls"
local null_ls = require("null-ls")
-- Check supported formatters and linters
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
@ -299,9 +303,9 @@ local config = {
-- Set a formatter
null_ls.builtins.formatting.stylua,
null_ls.builtins.formatting.prettier,
null_ls.builtins.formatting.deno_fmt.with {
null_ls.builtins.formatting.deno_fmt.with({
filetypes = { "markdown" },
},
}),
}
return config -- return final config table
end,