Nvim : Fix missing commas.

This commit is contained in:
Dmitry Voronin 2024-02-06 15:28:04 +03:00
parent fcb01489a0
commit 836bf558e1
4 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ require("gitsigns").setup {
signcolumn = false, signcolumn = false,
word_diff = false, word_diff = false,
watch_gitdir = { watch_gitdir = {
follow_files = true follow_files = true,
}, },
attach_to_untracked = true, attach_to_untracked = true,
current_line_blame = false, current_line_blame = false,
@ -29,13 +29,13 @@ require("gitsigns").setup {
update_debounce = 100, update_debounce = 100,
preview_config = { preview_config = {
border = "single", border = "single",
col = 1 col = 1,
relative = "cursor", relative = "cursor",
row = 0, row = 0,
style = "minimal", style = "minimal",
}, },
yadm = { yadm = {
enable = false enable = false,
}, },
} }

View file

@ -23,7 +23,7 @@ require("lualine").setup {
lualine_c = {"filename"}, lualine_c = {"filename"},
lualine_x = {"encoding", "fileformat", "filetype"}, lualine_x = {"encoding", "fileformat", "filetype"},
lualine_y = {"progress"}, lualine_y = {"progress"},
lualine_z = {"location"} lualine_z = {"location"},
}, },
inactive_sections = { inactive_sections = {
lualine_a = {}, lualine_a = {},
@ -31,9 +31,9 @@ require("lualine").setup {
lualine_c = {"filename"}, lualine_c = {"filename"},
lualine_x = {"location"}, lualine_x = {"location"},
lualine_y = {}, lualine_y = {},
lualine_z = {} lualine_z = {},
}, },
extensions = {} extensions = {},
inactive_winbar = {}, inactive_winbar = {},
tabline = {}, tabline = {},
winbar = {}, winbar = {},

View file

@ -2,10 +2,10 @@ require("telescope").setup{
defaults = { defaults = {
mappings = { mappings = {
i = { i = {
["<C-?>"] = "which_key" ["<C-?>"] = "which_key",
} }
} }
}, },
extensions = { } extensions = { },
pickers = { }, pickers = { },
} }

View file

@ -36,7 +36,7 @@ require("todo-comments").setup {
error = { "DiagnosticError", "ErrorMsg", "#DC2626" }, error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
hint = { "DiagnosticHint", "#10B981" }, hint = { "DiagnosticHint", "#10B981" },
info = { "DiagnosticInfo", "#2563EB" }, info = { "DiagnosticInfo", "#2563EB" },
test = { "Identifier", "#FF00FF" } test = { "Identifier", "#FF00FF" },
warning = { "DiagnosticWarn", "WarningMsg", "#FBBF24" }, warning = { "DiagnosticWarn", "WarningMsg", "#FBBF24" },
}, },
search = { search = {