Nvim : Fix missing commas.
This commit is contained in:
parent
fcb01489a0
commit
836bf558e1
|
@ -12,7 +12,7 @@ require("gitsigns").setup {
|
|||
signcolumn = false,
|
||||
word_diff = false,
|
||||
watch_gitdir = {
|
||||
follow_files = true
|
||||
follow_files = true,
|
||||
},
|
||||
attach_to_untracked = true,
|
||||
current_line_blame = false,
|
||||
|
@ -29,13 +29,13 @@ require("gitsigns").setup {
|
|||
update_debounce = 100,
|
||||
preview_config = {
|
||||
border = "single",
|
||||
col = 1
|
||||
col = 1,
|
||||
relative = "cursor",
|
||||
row = 0,
|
||||
style = "minimal",
|
||||
},
|
||||
yadm = {
|
||||
enable = false
|
||||
enable = false,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ require("lualine").setup {
|
|||
lualine_c = {"filename"},
|
||||
lualine_x = {"encoding", "fileformat", "filetype"},
|
||||
lualine_y = {"progress"},
|
||||
lualine_z = {"location"}
|
||||
lualine_z = {"location"},
|
||||
},
|
||||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
|
@ -31,9 +31,9 @@ require("lualine").setup {
|
|||
lualine_c = {"filename"},
|
||||
lualine_x = {"location"},
|
||||
lualine_y = {},
|
||||
lualine_z = {}
|
||||
lualine_z = {},
|
||||
},
|
||||
extensions = {}
|
||||
extensions = {},
|
||||
inactive_winbar = {},
|
||||
tabline = {},
|
||||
winbar = {},
|
||||
|
|
|
@ -2,10 +2,10 @@ require("telescope").setup{
|
|||
defaults = {
|
||||
mappings = {
|
||||
i = {
|
||||
["<C-?>"] = "which_key"
|
||||
["<C-?>"] = "which_key",
|
||||
}
|
||||
}
|
||||
},
|
||||
extensions = { }
|
||||
extensions = { },
|
||||
pickers = { },
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ require("todo-comments").setup {
|
|||
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
|
||||
hint = { "DiagnosticHint", "#10B981" },
|
||||
info = { "DiagnosticInfo", "#2563EB" },
|
||||
test = { "Identifier", "#FF00FF" }
|
||||
test = { "Identifier", "#FF00FF" },
|
||||
warning = { "DiagnosticWarn", "WarningMsg", "#FBBF24" },
|
||||
},
|
||||
search = {
|
||||
|
|
Reference in a new issue