This commit is contained in:
Zacharias-Brohn
2025-10-23 19:21:56 +02:00
parent 68b0466153
commit fb6302a74d
10 changed files with 82 additions and 9 deletions
+2
View File
@@ -0,0 +1,2 @@
let &t_SI = "\e[5 q"
let &t_EI = "\e[2 q"
+1 -2
View File
@@ -1,3 +1,4 @@
vim.cmd('source ' .. vim.fn.stdpath("config") .. "/cursor.vim")
require("config.lazy")
require("options")
require("globals")
@@ -15,5 +16,3 @@ vim.filetype.add({
[".*/uwsm/env.*"] = "zsh",
}
})
vim.cmd[[colorscheme onedark]]
+4
View File
@@ -5,3 +5,7 @@ autocmd("LspAttach", {
vim.lsp.document_color.enable(false, args.buf, { "background" })
end,
})
vim.api.nvim_create_autocmd("VimLeave", {
command = "set guicursor=a:ver25"
})
+1
View File
@@ -29,6 +29,7 @@ local cmp_kinds = {
local cmp = require('cmp')
cmp.setup({
preselect = 'None',
formatting = {
fields = { 'kind', 'abbr' },
format = function(_, vim_item)
+26
View File
@@ -0,0 +1,26 @@
require("huez").setup({
path = vim.fs.normalize(vim.fn.stdpath("data") --[[@as string]]) .. "/huez",
fallback = "default",
suppress_messages = true,
theme_config_module = nil,
exclude = { "desert", "evening", "industry", "koehler", "morning", "murphy", "pablo", "peachpuff", "ron", "shine", "slate", "torte", "zellner", "blue", "darkblue", "delek", "quiet", "elflord", "habamax", "lunaperche", "zaibatsu", "wildcharm", "sorbet", "vim", },
background = "dark",
picker = {
themes = {
layout = "right",
opts = {},
},
favorites = {
layout = "right",
opts = {},
},
live = {
layout = "right",
opts = {},
},
ensured = {
layout = "right",
opts = {},
},
},
})
+1
View File
@@ -98,6 +98,7 @@ require("mason-lspconfig").setup({
})
cmp.setup {
preselect = 'None',
formatting = {
fields = { 'kind', 'abbr' },
format = function(entry, vim_item)
+1
View File
@@ -76,6 +76,7 @@ local virtual_env = function()
end
require("lualine").setup {
laststatus = 0,
options = {
icons_enabled = true,
theme = "auto",
+7
View File
@@ -0,0 +1,7 @@
return {
content = {
active = nil,
inactive = nil,
},
use_icons = true,
}
+3 -1
View File
@@ -27,7 +27,6 @@ vim.opt.formatoptions = "rqnj"
-- vim.opt.foldlevel = 0
-- vim.opt.foldlevelstart = 0
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
vim.o.laststatus = 3
vim.o.clipboard = "unnamedplus"
vim.o.cursorline = true
vim.o.cursorlineopt = "number"
@@ -36,6 +35,7 @@ vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.mouse = "a"
vim.o.number = true
vim.o.termguicolors = true
vim.o.numberwidth = 3
vim.o.ruler = false
vim.o.showmode = false
@@ -53,5 +53,7 @@ local sep = is_windows and "\\" or "/"
local delim = is_windows and ";" or ":"
vim.env.PATH = table.concat({ vim.fn.stdpath "data", "mason", "bin" }, sep) .. delim .. vim.env.PATH
vim.api.nvim_set_hl( 0, "Cursor", { reverse = true })
-- vim-tpipeline
vim.g.tpipeline_restore = 1
+36 -6
View File
@@ -5,7 +5,17 @@ return {
require("config.treesitter")
end,
},
{
"sainnhe/edge",
lazy = false,
priority = 1000,
config = function()
vim.g.edge_enable_italic = 1
vim.g.edge_style = "default"
vim.g.edge_menu_selection_background = "purple"
vim.cmd("colorscheme edge")
end,
},
{
"rmagatti/auto-session",
config = function()
@@ -48,16 +58,21 @@ return {
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
config = function ()
if vim.env.TMUX then
vim.api.nvim_create_autocmd({ "FocusGained", "ColorScheme", "VimEnter" }, {
callback = function()
vim.defer_fn( function()
vim.opt.laststatus = 0
end, 100)
end,
})
vim.o.laststatus = 0
end
require("config.lualine")
end,
},
{
"mawkler/modicator.nvim",
setup = function()
vim.o.cursorline = true
vim.o.number = true
vim.o.termguicolors = true
end,
config = function()
require("config.modicator")
end
@@ -252,5 +267,20 @@ return {
},
{
"vimpostor/vim-tpipeline",
},
{
"yazeed1s/minimal.nvim",
config = function()
vim.g.minimal_italic_comments = true
end,
},
{
"vague2k/huez.nvim",
branch = "stable",
event = "UIEnter",
import = "huez-manager.import",
config = function()
require("config.huez")
end,
}
}