feat: basic IA utils to use at work

This commit is contained in:
2026-03-05 11:10:58 +01:00
parent fe5e852a48
commit d0e1af9fa0
3 changed files with 54 additions and 103 deletions

View File

@@ -25,8 +25,8 @@ vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,
-- ╭─────────────╮
-- │ Colorscheme │
-- ╰─────────────╯
vim.cmd("colorscheme gruvbox") -- rose-pine, gruvbox
vim.o.background = "dark" -- "dark" or "light"
vim.cmd("colorscheme komau") -- rose-pine, gruvbox, koda-{dark/light/moss/glade}, komau
vim.o.background = "dark" -- "dark" or "light"
-- ╭───────────────────╮
-- │ Default clipboard │
@@ -51,3 +51,9 @@ vim.fn.sign_define("DiagnosticSignError", { text = " ", texthl = "DiagnosticS
vim.fn.sign_define("DiagnosticSignWarn", { text = "", texthl = "DiagnosticSignWarn" })
vim.fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo" })
vim.fn.sign_define("DiagnosticSignHint", { text = "󰌵", texthl = "DiagnosticSignHint" })
-- ╭─────────────────────╮
-- │ IA initial disables │
-- ╰─────────────────────╯
vim.b.copilot_enabled = false
vim.g.copilot_enabled = false