breaking change: moved highlight stuff to base16 repo | rewrote whole base16 repo
Just run :PackerSync, check https://nvchad.github.io/config/Custom%20config#local-themes and the section below it for newly added features
This commit is contained in:
parent
e557dc3af9
commit
02d545cd42
10 changed files with 12 additions and 304 deletions
|
@ -3,7 +3,7 @@ if not present then
|
|||
return
|
||||
end
|
||||
|
||||
local colors = require("colors").get()
|
||||
local colors = require("base16").get_colors("base_30")
|
||||
|
||||
local options = {
|
||||
options = {
|
||||
|
|
|
@ -4,7 +4,7 @@ if not present then
|
|||
return
|
||||
end
|
||||
|
||||
local colors = require("colors").get()
|
||||
local colors = require("base16").get_colors("base_30")
|
||||
|
||||
local options = {
|
||||
override = {
|
||||
|
|
|
@ -2,11 +2,7 @@ local M = {}
|
|||
|
||||
require("plugins.configs.others").lsp_handlers()
|
||||
|
||||
function M.on_attach(client, bufnr)
|
||||
local function buf_set_option(...)
|
||||
vim.api.nvim_buf_set_option(bufnr, ...)
|
||||
end
|
||||
|
||||
function M.on_attach(client, _)
|
||||
client.resolved_capabilities.document_formatting = false
|
||||
client.resolved_capabilities.document_range_formatting = false
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ g.nvim_tree_icons = {
|
|||
default = "",
|
||||
empty = "",
|
||||
empty_open = "",
|
||||
open = "",
|
||||
open = " ",
|
||||
symlink = "",
|
||||
symlink_open = "",
|
||||
},
|
||||
|
|
|
@ -4,7 +4,8 @@ if not present then
|
|||
return
|
||||
end
|
||||
|
||||
local colors = require("colors").get()
|
||||
local colors = require("base16").get_colors("base_30")
|
||||
|
||||
local lsp = require "feline.providers.lsp"
|
||||
local lsp_severity = vim.diagnostic.severity
|
||||
|
||||
|
|
|
@ -18,7 +18,11 @@ local plugins = {
|
|||
["NvChad/nvim-base16.lua"] = {
|
||||
after = "packer.nvim",
|
||||
config = function()
|
||||
require("colors").init()
|
||||
local ok, base16 = pcall(require, "base16")
|
||||
|
||||
if ok then
|
||||
base16.load_theme()
|
||||
end
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue