Quelques fix

This commit is contained in:
François
2026-03-21 18:09:01 +01:00
parent 8f32afa1b8
commit a3eb567333
2 changed files with 6 additions and 3 deletions

View File

@@ -1,14 +1,14 @@
local options = { local options = {
cursorline = true, --highlight line cursorline = true, --not highlight line
termguicolors = true, termguicolors = true,
number = true, --numbered lines number = true, --numbered lines
--indentation stuff --indentation stuff
softtabstop = 0, softtabstop = 0,
tabstop = 4, tabstop = 2,
expandtab = true, expandtab = true,
shiftwidth = 4, shiftwidth = 2,
smarttab = true, smarttab = true,
--print blank and tabs --print blank and tabs

View File

@@ -1,6 +1,9 @@
local palette = require('nightfox.palette').load('dayfox')
local groups = { local groups = {
all = { all = {
BufferCurrent = { fg = "#ffffff" }, BufferCurrent = { fg = "#ffffff" },
--Cursor = { fg = palette.bg1, bg = palette.fg2 },
Cursor = { fg = "#ffffff", bg = "#000000" },
} }
} }
require("nightfox").setup({groups = groups}) require("nightfox").setup({groups = groups})