AutoYADM commit: 2024-12-11 02:15:02
This commit is contained in:
parent
eddb23b945
commit
e2ca879909
2 changed files with 12 additions and 12 deletions
|
@ -3,17 +3,17 @@
|
||||||
-- Add any additional autocmds here
|
-- Add any additional autocmds here
|
||||||
vim.opt_local.breakindent = true
|
vim.opt_local.breakindent = true
|
||||||
vim.opt_local.wrap = true
|
vim.opt_local.wrap = true
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
-- vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = "python",
|
-- pattern = "python",
|
||||||
callback = function()
|
-- callback = function()
|
||||||
local cl = require("colorbuddy")
|
-- local cl = require("colorbuddy")
|
||||||
cl.Group.new("@variable", cl.colors.primary)
|
-- cl.Group.new("@variable", cl.colors.primary)
|
||||||
cl.Group.new("@string", cl.colors.secondary)
|
-- cl.Group.new("@string", cl.colors.secondary)
|
||||||
cl.Group.new("@keyword", cl.colors.complement)
|
-- cl.Group.new("@keyword", cl.colors.complement)
|
||||||
cl.Group.new("@keyword.operator", cl.colors.complement)
|
-- cl.Group.new("@keyword.operator", cl.colors.complement)
|
||||||
cl.Group.new("@constant.builtin", cl.colors.complement)
|
-- cl.Group.new("@constant.builtin", cl.colors.complement)
|
||||||
end,
|
-- end,
|
||||||
})
|
-- })
|
||||||
-- vim.api.nvim_create_autocmd("FileType", {
|
-- vim.api.nvim_create_autocmd("FileType", {
|
||||||
-- pattern = "tex",
|
-- pattern = "tex",
|
||||||
-- callback = function()
|
-- callback = function()
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
-- test comment
|
-- test comment
|
||||||
|
|
||||||
M.go_map = {
|
M.go_map = {
|
||||||
|
|
||||||
-- ["@lsp.type.class"] = { link = "Structure" },
|
-- ["@lsp.type.class"] = { link = "Structure" },
|
||||||
-- ["@lsp.type.decorator"] = { link = "Function" },
|
-- ["@lsp.type.decorator"] = { link = "Function" },
|
||||||
-- ["@lsp.type.enum"] = { link = "Structure" },
|
-- ["@lsp.type.enum"] = { link = "Structure" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue