stuff
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ autocmd("LspAttach", {
|
||||
callback = function(args)
|
||||
local client = vim.lsp.get_client_by_id(args.data.client_id)
|
||||
if client then
|
||||
vim.lsp.document_color.enable(false, args.buf, { "background" })
|
||||
vim.lsp.document_color.enable(false, { bufnr = args.buf })
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
@@ -6,19 +6,19 @@ local function pick(light, dark)
|
||||
end
|
||||
|
||||
local c = {
|
||||
bg = "#1A1206",
|
||||
bg_alt = "#231A0D",
|
||||
bg_mid = pick("#32291A", "#271E11"),
|
||||
fg = "#F1E0CA",
|
||||
fg_muted = "#DBC3A1",
|
||||
bg = "#161219",
|
||||
bg_alt = "#1E1A21",
|
||||
bg_mid = pick("#2D2830", "#221E25"),
|
||||
fg = "#E9E0EA",
|
||||
fg_muted = "#CEC3D3",
|
||||
fg_strong = pick("#15161A", "#F4F4F8"),
|
||||
|
||||
normal = "#7D2C1E",
|
||||
insert = "#733429",
|
||||
visual = "#B5893E",
|
||||
normal = "#894FBF",
|
||||
insert = "#543D68",
|
||||
visual = "#B2417A",
|
||||
replace = "#93000A",
|
||||
command = pick("#FFDFD5", "#B9AB66"),
|
||||
inactive = "#231A0D",
|
||||
command = pick("#FFDCF2", "#A9A5D8"),
|
||||
inactive = "#1E1A21",
|
||||
|
||||
normal_fg = pick("#15161A", "#F4F4F8"),
|
||||
insert_fg = pick("#15161A", "#F4F4F8"),
|
||||
|
||||
+2
-2
@@ -117,5 +117,5 @@ map({ "n", "v" }, "<leader>ap", require("actions-preview").code_actions)
|
||||
map("n", "K", require("pretty_hover").hover)
|
||||
|
||||
-- winbar
|
||||
local dbar_api = require "dropbar.api"
|
||||
map("n", "<leader>b", dbar_api.pick)
|
||||
-- local dbar_api = require "dropbar.api"
|
||||
-- map("n", "<leader>b", dbar_api.pick)
|
||||
|
||||
+12
-18
@@ -161,12 +161,12 @@ return {
|
||||
require "config.harpoon"
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "catgoose/nvim-colorizer.lua",
|
||||
-- config = function()
|
||||
-- require("config.colorizer")
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"catgoose/nvim-colorizer.lua",
|
||||
config = function()
|
||||
require "config.colorizer"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"ziglang/zig.vim",
|
||||
},
|
||||
@@ -196,12 +196,6 @@ return {
|
||||
vim.g.minimal_italic_comments = true
|
||||
end,
|
||||
},
|
||||
{
|
||||
"ThePrimeagen/refactoring.nvim",
|
||||
config = function()
|
||||
require "config.refactoring"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"Yazeed1s/minimal.nvim",
|
||||
config = function()
|
||||
@@ -255,9 +249,9 @@ return {
|
||||
-- {
|
||||
-- "artemave/workspace-diagnostics.nvim",
|
||||
-- },
|
||||
{
|
||||
require "config.dev-tools",
|
||||
},
|
||||
-- {
|
||||
-- require "config.dev-tools",
|
||||
-- },
|
||||
{
|
||||
"Fildo7525/pretty_hover",
|
||||
event = "LspAttach",
|
||||
@@ -267,9 +261,9 @@ return {
|
||||
"knubie/vim-kitty-navigator",
|
||||
build = "cp ./*.py ~/.config/kitty/",
|
||||
},
|
||||
{
|
||||
require "config.dropbar",
|
||||
},
|
||||
-- {
|
||||
-- require "config.dropbar",
|
||||
-- },
|
||||
{
|
||||
"lewis6991/gitsigns.nvim",
|
||||
config = function()
|
||||
|
||||
Reference in New Issue
Block a user