Format workspace with CodeFormat
This commit is contained in:
+17
-17
@@ -14,16 +14,16 @@
|
||||
limitations under the License.
|
||||
]]
|
||||
|
||||
require('nightfox').setup({
|
||||
require("nightfox").setup({
|
||||
options = {
|
||||
-- Compiled file's destination location
|
||||
compile_path = vim.fn.stdpath("cache") .. "/nightfox",
|
||||
compile_file_suffix = "_compiled", -- Compiled file suffix
|
||||
transparent = false, -- Disable setting background
|
||||
terminal_colors = true, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
|
||||
dim_inactive = false, -- Non focused panes set to alternative background
|
||||
styles = { -- Style to be applied to different syntax groups
|
||||
comments = "NONE", -- Value is any valid attr-list value `:help attr-list`
|
||||
transparent = false, -- Disable setting background
|
||||
terminal_colors = true, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
|
||||
dim_inactive = false, -- Non focused panes set to alternative background
|
||||
styles = { -- Style to be applied to different syntax groups
|
||||
comments = "NONE", -- Value is any valid attr-list value `:help attr-list`
|
||||
functions = "NONE",
|
||||
keywords = "NONE",
|
||||
numbers = "NONE",
|
||||
@@ -31,16 +31,16 @@ require('nightfox').setup({
|
||||
types = "NONE",
|
||||
variables = "NONE",
|
||||
},
|
||||
inverse = { -- Inverse highlight for different types
|
||||
inverse = { -- Inverse highlight for different types
|
||||
match_paren = false,
|
||||
visual = false,
|
||||
search = false,
|
||||
},
|
||||
modules = { -- List of various plugins and additional options
|
||||
modules = { -- List of various plugins and additional options
|
||||
cmp = true,
|
||||
diagnostic = {
|
||||
enable = true,
|
||||
background = true
|
||||
background = true,
|
||||
},
|
||||
gitsigns = true,
|
||||
native_lsp = true,
|
||||
@@ -54,14 +54,14 @@ require('nightfox').setup({
|
||||
-- By default nightfox links some groups together. `CursorColumn` is one of these groups. When overriding
|
||||
-- Make sure `link` is cleared to `""` so that the link will be removed.
|
||||
-- see https://github.com/EdenEast/nightfox.nvim/blob/main/lua/nightfox/group/editor.lua
|
||||
Normal = { bg = "palette.bg0", link = "" },
|
||||
NormalNC = { bg = "palette.bg0", link = "" },
|
||||
NormalFloat = { bg = "palette.bg1", link = "" },
|
||||
CursorLine = { bg = "palette.bg1", link = "" },
|
||||
StatusLine = { bg = "palette.bg1", link = "" },
|
||||
StatusLineNC = { bg = "palette.bg1", link = "" }
|
||||
}
|
||||
}
|
||||
Normal = { bg = "palette.bg0", link = "", },
|
||||
NormalNC = { bg = "palette.bg0", link = "", },
|
||||
NormalFloat = { bg = "palette.bg1", link = "", },
|
||||
CursorLine = { bg = "palette.bg1", link = "", },
|
||||
StatusLine = { bg = "palette.bg1", link = "", },
|
||||
StatusLineNC = { bg = "palette.bg1", link = "", },
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
vim.cmd("colorscheme nightfox")
|
||||
|
||||
Reference in New Issue
Block a user