mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-16 01:01:34 +00:00
feat(ui): fix line highlight
This commit is contained in:
@ -6,7 +6,6 @@ vim.fn.sign_define(
|
||||
{ text = "", numhl = "DapBreakpointRejected", texthl = "DapBreakpointRejected" }
|
||||
)
|
||||
|
||||
require "utils.autocmd"
|
||||
require "utils.usercmd"
|
||||
require "utils.options"
|
||||
require "utils.neovide"
|
||||
require("utils.autocmd")
|
||||
require("utils.usercmd")
|
||||
require("utils.neovide")
|
||||
|
@ -1,3 +1,18 @@
|
||||
require "nvchad.options"
|
||||
require("nvchad.options")
|
||||
|
||||
-- add yours here!
|
||||
local opt = vim.opt
|
||||
|
||||
vim.g.dap_virtual_text = true
|
||||
vim.wo.relativenumber = true
|
||||
vim.wo.wrap = false
|
||||
vim.o.cursorlineopt = "number,line"
|
||||
-- opt.iskeyword:append("-")
|
||||
opt.foldmethod = "expr"
|
||||
opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
opt.foldlevel = 20
|
||||
opt.ignorecase = true
|
||||
opt.wildignore:append({ "*/node_modules/*" })
|
||||
opt.clipboard:append({ "unnamedplus" })
|
||||
opt.iskeyword:append("-")
|
||||
opt.termguicolors = true -- True color support
|
||||
opt.autoindent = true --- Good auto indent
|
||||
|
@ -428,10 +428,10 @@ local plugins = {
|
||||
opts = {
|
||||
enhanced_diff_hl = true,
|
||||
view = {
|
||||
merge_tool = {
|
||||
--[[ merge_tool = {
|
||||
layout = "diff3_mixed",
|
||||
disable_diagnostics = true,
|
||||
},
|
||||
}, ]]
|
||||
},
|
||||
keymaps = {
|
||||
view = {
|
||||
|
@ -1,15 +0,0 @@
|
||||
local opt = vim.opt
|
||||
|
||||
vim.g.dap_virtual_text = true
|
||||
vim.wo.relativenumber = true
|
||||
vim.wo.wrap = false
|
||||
-- opt.iskeyword:append("-")
|
||||
opt.foldmethod = "expr"
|
||||
opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
opt.foldlevel = 20
|
||||
opt.ignorecase = true
|
||||
opt.wildignore:append { "*/node_modules/*" }
|
||||
opt.clipboard:append { "unnamedplus" }
|
||||
opt.iskeyword:append "-"
|
||||
opt.termguicolors = true -- True color support
|
||||
opt.autoindent = true --- Good auto indent
|
Reference in New Issue
Block a user