Compare commits
2 Commits
cace587a09
...
afdefb7dc3
Author | SHA1 | Date | |
---|---|---|---|
afdefb7dc3
|
|||
64afe9c9ee
|
@ -5,38 +5,46 @@ return { "mellow-theme/mellow.nvim",
|
||||
vim.g.mellow_variant = "dark"
|
||||
local c = require("mellow.colors")[vim.g.mellow_variant]
|
||||
|
||||
vim.g.mellow_highlight_overrides = {
|
||||
-- stop inactive windows from having a darker bg
|
||||
["NormalNC"] = { link = "Normal" },
|
||||
if vim.g.mellow_variant == "dark" then
|
||||
vim.g.mellow_highlight_overrides = {
|
||||
-- stop inactive windows from having a darker bg
|
||||
["NormalNC"] = { link = "Normal" },
|
||||
|
||||
-- make splits look cleaner
|
||||
["WinSeparator"] = { link = "Normal" },
|
||||
-- revert change with statusline coloring
|
||||
["StatusLine"] = { fg = c.white, bg = c.gray01 },
|
||||
["StatusLineNC"] = { fg = c.bg_dark },
|
||||
|
||||
-- make floats darker
|
||||
["NormalFloat"] = { fg = c.fg, bg = "#111111" },
|
||||
["FloatBorder"] = { link = "NormalFloat" },
|
||||
-- make splits look cleaner
|
||||
["WinSeparator"] = { fg = c.gray01 },
|
||||
|
||||
-- make diagnostics have an undercurl
|
||||
["DiagnosticUnderlineError"] = { fg = c.red, undercurl = true },
|
||||
["DiagnosticUnderlineWarn"] = { fg = c.yellow, undercurl = true },
|
||||
["DiagnosticUnderlineInfo"] = { fg = c.blue, undercurl = true },
|
||||
["DiagnosticUnderlineHint"] = { fg = c.cyan, undercurl = true },
|
||||
-- make floats darker
|
||||
["NormalFloat"] = { fg = c.fg, bg = "#111111" },
|
||||
["FloatBorder"] = { link = "NormalFloat" },
|
||||
|
||||
-- make blink actually look nice
|
||||
["BlinkCmpMenu"] = { link = "NormalFloat" },
|
||||
["BlinkCmpMenuBorder"] = { link = "BlinkCmpMenu" },
|
||||
["BlinkCmpMenuSelection"] = { bg = c.gray01 },
|
||||
["BlinkCmpLabelDeprecated"] = { link = "CmpItemAbbrDeprecated" },
|
||||
-- make diagnostics have an undercurl
|
||||
["DiagnosticUnderlineError"] = { fg = c.red, undercurl = true },
|
||||
["DiagnosticUnderlineWarn"] = { fg = c.yellow, undercurl = true },
|
||||
["DiagnosticUnderlineInfo"] = { fg = c.blue, undercurl = true },
|
||||
["DiagnosticUnderlineHint"] = { fg = c.cyan, undercurl = true },
|
||||
["DiagnosticHint"] = { fg = c.cyan }, -- revert
|
||||
|
||||
-- telescope styling so I can see when coding outside (real)
|
||||
["TelescopeResultsNormal"] = { bg = c.bg_dark },
|
||||
["TelescopeResultsBorder"] = { link = "TelescopeResultsNormal" },
|
||||
["TelescopeResultsTitle"] = {
|
||||
bg = core.color.copyhl("TelescopeResultsNormal").background,
|
||||
fg = core.color.copyhl("TelescopeResultsNormal").background
|
||||
},
|
||||
["TelescopePreviewNormal"] = { link = "NormalFloat" },
|
||||
["TelescopePreviewBorder"] = { link = "TelescopePreviewNormal" }
|
||||
}
|
||||
-- make blink actually look nice
|
||||
["BlinkCmpMenu"] = { link = "NormalFloat" },
|
||||
["BlinkCmpMenuBorder"] = { link = "BlinkCmpMenu" },
|
||||
["BlinkCmpMenuSelection"] = { bg = c.gray01 },
|
||||
["BlinkCmpLabelDeprecated"] = { link = "CmpItemAbbrDeprecated" },
|
||||
["BlinkCmpLabelMatch"] = { link = "NormalFloat" }, -- reverted
|
||||
|
||||
-- telescope styling so I can see when coding outside (real)
|
||||
["TelescopeResultsNormal"] = { bg = c.bg_dark },
|
||||
["TelescopeResultsBorder"] = { link = "TelescopeResultsNormal" },
|
||||
["TelescopeResultsTitle"] = {
|
||||
bg = core.color.copyhl("TelescopeResultsNormal").background,
|
||||
fg = core.color.copyhl("TelescopeResultsNormal").background
|
||||
},
|
||||
["TelescopePreviewNormal"] = { link = "NormalFloat" },
|
||||
["TelescopePreviewBorder"] = { link = "TelescopePreviewNormal" }
|
||||
}
|
||||
end
|
||||
end
|
||||
}
|
||||
|
@ -1,79 +1,54 @@
|
||||
local map, auto = core.misc.map, core.misc.auto
|
||||
|
||||
--- to highlight a buffer or not
|
||||
---@param buf number buffer number
|
||||
---@return boolean to_highlight
|
||||
local function highlight(buf)
|
||||
local ft = vim.api.nvim_get_option_value("ft", { buf = buf })
|
||||
|
||||
-- disable highlighting on big files
|
||||
local ok, stats = pcall(vim.uv.fs_stat, vim.api.nvim_buf_get_name(buf))
|
||||
if ok and stats and stats.size > (1000 * 100 * 10) --[[1MB]] then
|
||||
return false
|
||||
end
|
||||
|
||||
-- fts to stop highlighting in
|
||||
if table.contains({
|
||||
"diff", "tex"
|
||||
}, ft) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
--- to indent a buffer or not
|
||||
---@param buf number buffer number
|
||||
---@return boolean to_indent
|
||||
local function indent(buf)
|
||||
local ft = vim.api.nvim_get_option_value("ft", { buf = buf })
|
||||
|
||||
-- disable indentation on filetypes
|
||||
if not table.contains({
|
||||
"php"
|
||||
}, ft) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
return {
|
||||
{ "nvim-treesitter/nvim-treesitter",
|
||||
branch = "main",
|
||||
disable = not vim.fn.has("nvim-0.11.0"),
|
||||
disable = not vim.fn.has("nvim-0.10.0"),
|
||||
config = function()
|
||||
vim.cmd("TSUpdate")
|
||||
end,
|
||||
load = function()
|
||||
local treesitter = require("nvim-treesitter")
|
||||
require("nvim-treesitter.configs").setup {
|
||||
-- good default parsers
|
||||
ensure_installed = { "c", "lua", "vim", "vimdoc", "markdown",
|
||||
"markdown_inline", "java", "bash", "css", "html", "luadoc",
|
||||
"make"
|
||||
},
|
||||
|
||||
-- seems to not be very async despite the docs saying it is
|
||||
-- default parsers to install
|
||||
-- treesitter.install { "c", "lua", "vim", "vimdoc", "markdown",
|
||||
-- "markdown_inline", "java", "bash", "css", "html", "luadoc", "make"
|
||||
-- }
|
||||
-- indentation
|
||||
indent = {
|
||||
enable = true,
|
||||
|
||||
-- enable highlighting
|
||||
auto("FileType", {
|
||||
callback = function(e)
|
||||
-- I like both treesitter and default highlighting enabled
|
||||
if highlight(e.buf) then
|
||||
-- stop errors from showing up, I don't care
|
||||
pcall(vim.treesitter.start)
|
||||
vim.bo.syntax = "on"
|
||||
disable = function(lang, _)
|
||||
-- disable indenting in php (it's more broken with than without)
|
||||
return table.contains(({
|
||||
"php"
|
||||
}), lang)
|
||||
end
|
||||
},
|
||||
|
||||
-- indenting
|
||||
if indent(e.buf) then
|
||||
vim.bo.indentexpr = "v:lua.require'nvim-treesitter'.indentexpr()"
|
||||
-- enable highlighting
|
||||
highlight = {
|
||||
enable = true,
|
||||
-- use vim highlighting in addition to treesitter
|
||||
additional_vim_regex_highlighting = true,
|
||||
|
||||
disable = function(lang, buf)
|
||||
-- disable in some files where vim's builtin highlighting is better
|
||||
if table.contains(({
|
||||
"diff", "tex"
|
||||
}), lang) then
|
||||
return true
|
||||
end
|
||||
|
||||
-- disable in big files
|
||||
local ok, stats = pcall(vim.uv.fs_stat,
|
||||
vim.api.nvim_buf_get_name(buf))
|
||||
if ok and stats and stats.size > (1024 * 100 * 10) --[[1MB]] then
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
-- set the folding method
|
||||
vim.opt.foldmethod = "expr"
|
||||
vim.wo.foldexpr = 'v:lua.vim.treesitter.foldexpr()'
|
||||
end
|
||||
})
|
||||
}
|
||||
}
|
||||
end
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user