refactor(nvim): remove unused plugins

This commit is contained in:
Price Hiller 2022-08-02 17:10:17 -05:00
parent 66d22882a6
commit 23ad8e97a3
5 changed files with 0 additions and 65 deletions

View File

@ -1,7 +0,0 @@
-- Load Animations
require('wlanimation')
-- Load a line (these include setup)
require('wlsample.bubble2')
-- In the future I may want to implement
-- my own, for now much too lazy for that

View File

@ -1,10 +0,0 @@
-- Alias for vim.g
local g = vim.g
-- Run COQ on open
g.coq_settings = {
auto_start = 'shut-up',
limits = {
completion_manual_timeout = 2000,
},
}

View File

@ -1,18 +0,0 @@
local colors = require('tokyonight.colors').setup()
require('scrollbar').setup({
handle = {
color = colors.bg_highlight,
},
marks = {
Search = { color = colors.orange },
Error = { color = colors.error },
Warn = { color = colors.warning },
Info = { color = colors.info },
Hint = { color = colors.hint },
Misc = { color = colors.purple },
},
handlers = {
diagnostic = true,
search = true,
},
})

View File

@ -1,7 +0,0 @@
local g = vim.g
g.tokyonight_style = 'night'
g.tokyonight_transparent = true
g.tokyonight_transparent_sidebar = true
vim.cmd('colorscheme tokyonight')

View File

@ -576,29 +576,6 @@ return packer.startup({
keys = "/",
})
-- Lsp Diags on scrollbar
use({
"petertriho/nvim-scrollbar",
requires = {
"kevinhwang91/nvim-hlslens",
"folke/tokyonight.nvim",
},
after = "nvim-hlslens",
config = function()
require("plugins.configs.diag-scrollbar")
end,
})
-- Discord Rich Presence
use({
"andweeb/presence.nvim",
config = function()
require("presence"):setup({
neovim_image_text = "How do I exit?",
})
end,
})
-- Note Taking
use({
"nvim-neorg/neorg",