Quelques fix
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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})
|
||||||
|
|||||||
Reference in New Issue
Block a user