neovim fix dotfiles

This commit is contained in:
afoucaultc 2026-07-05 09:57:48 +02:00
parent 72b6ef5152
commit 7d8592e874
14 changed files with 20 additions and 157 deletions

View file

@ -1,4 +0,0 @@
source = ~/.config/hypr/hyprland_config/variables.conf
source = ~/.config/hypr/hyprland_config/*

View file

@ -7,9 +7,3 @@ require("conf.startup")
require("conf.style")
require("conf.windowrules")
require("conf.workspace")
-- For Noctalia Color templates
require("noctalia")
-- This loads Noctalia-generated Hyprland colors.
dofile("/home/afoucaultc/.config/hypr/noctalia/noctalia-colors.lua")

View file

@ -1,7 +0,0 @@
background = rgba(010409ff)
base = rgba(010409ff)
text = rgba(c9d1d9ff)
alternate_base = rgba(161b22ff)
bright_text = rgba(010409ff)
accent = rgba(58a6ffff)
accent_secondary = rgba(bc8cffff)

View file

@ -1,33 +0,0 @@
-- Generated by Noctalia
local primary = "rgb(7a88cf)"
local surface = "rgb(1f2335)"
local secondary = "rgb(d7729f)"
local error = "rgb(f7768e)"
hl.config({
general = {
col = {
active_border = primary,
inactive_border = surface,
},
},
group = {
col = {
border_active = secondary,
border_inactive = surface,
border_locked_active = error,
border_locked_inactive = surface,
},
groupbar = {
col = {
active = secondary,
inactive = surface,
locked_active = error,
locked_inactive = surface,
},
},
},
})

View file

@ -1,25 +0,0 @@
$primary = rgb(58a6ff)
$surface = rgb(010409)
$secondary = rgb(bc8cff)
$error = rgb(f85149)
$tertiary = rgb(bc8cff)
$surface_lowest = rgb(05080e)
general {
col.active_border = $primary
col.inactive_border = $surface
}
group {
col.border_active = $secondary
col.border_inactive = $surface
col.border_locked_active = $error
col.border_locked_inactive = $surface
groupbar {
col.active = $secondary
col.inactive = $surface
col.locked_active = $error
col.locked_inactive = $surface
}
}

View file

@ -1,35 +0,0 @@
-- Colors template generated by Noctalia
-- Source command is:
-- dofile(os.getenv("HOME") .. "/.config/hypr/noctalia/noctalia-colors.lua")
local primary = "rgb(58a6ff)"
local surface = "rgb(010409)"
local secondary = "rgb(bc8cff)"
local error = "rgb(f85149)"
hl.config({
general = {
col = {
active_border = primary,
inactive_border = surface,
},
},
group = {
col = {
border_active = secondary,
border_inactive = surface,
border_locked_active = error,
border_locked_inactive = surface,
},
groupbar = {
col = {
active = secondary,
inactive = surface,
locked_active = error,
locked_inactive = surface,
},
},
},
})

View file

@ -0,0 +1,6 @@
return {
{
"nvim-mini/mini.base16",
version = "*",
},
}

View file

@ -1,13 +0,0 @@
return {
{
"b0o/lavi",
lazy = false,
priority = 1000,
config = function()
vim.g.lavi_config = {
transparent = true,
}
vim.cmd.colorscheme("lavi")
end,
},
}

View file

@ -42,7 +42,5 @@ vim.o.confirm = true
vim.opt.spell = true
vim.opt.spelllang = "fr"
vim.o.background = "dark"
vim.cmd([[ colorscheme lavi ]])
-- others
vim.g.python3_host_prog = "/usr/bin/python3"