not sure yet, nix flake...

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-04-03 16:09:01 -05:00
parent 633916dd9a
commit 43df590ba2
49 changed files with 132 additions and 2453 deletions

View file

@ -1,11 +0,0 @@
# Plugins to look into
- https://github.com/lvimuser/lsp-inlayhints.nvim/tree/anticonceal
- https://github.com/theHamsta/nvim-dap-virtual-text/tree/inline-text
- https://github.com/andythigpen/nvim-coverage
- https://github.com/lukas-reineke/indent-blankline.nvim
- gitsigns?
- https://github.com/folke/noice.nvim
- others: https://nvimluau.dev/
- https://github.com/numToStr/Comment.nvim
- https://github.com/windwp/nvim-autopairs
- https://github.com/lukas-reineke/indent-blankline.nvim

View file

@ -1,30 +0,0 @@
return {
"stevearc/profile.nvim",
config = function()
local should_profile = os.getenv("NVIM_PROFILE")
if should_profile then
require("profile").instrument_autocmds()
if should_profile:lower():match("^start") then
require("profile").start("*")
else
require("profile").instrument("*")
end
end
local function toggle_profile()
local prof = require("profile")
if prof.is_recording() then
prof.stop()
vim.ui.input({ prompt = "Save profile to:", completion = "file", default = "profile.json" }, function(filename)
if filename then
prof.export(filename)
vim.notify(string.format("Wrote %s", filename))
end
end)
else
prof.start("*")
end
end
vim.keymap.set("", "<f1>", toggle_profile)
end,
}

View file

@ -1,18 +0,0 @@
return {
"marko-cerovac/material.nvim",
config = function()
vim.g.material_style = "darker"
require("material").setup({
plugins = {
"dashboard",
"gitsigns",
"telescope",
"nvim-tree",
"which-key",
},
high_visibility = {
darker = true,
},
})
end,
}