refactor(nvim): remove unused plugins
This commit is contained in:
parent
66d22882a6
commit
23ad8e97a3
@ -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
|
|
@ -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,
|
|
||||||
},
|
|
||||||
}
|
|
@ -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,
|
|
||||||
},
|
|
||||||
})
|
|
@ -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')
|
|
@ -576,29 +576,6 @@ return packer.startup({
|
|||||||
keys = "/",
|
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
|
-- Note Taking
|
||||||
use({
|
use({
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
|
Loading…
Reference in New Issue
Block a user