(neovim) lualine changes, markdownlint settings

This commit is contained in:
Bartek Stalewski 2025-07-21 22:13:45 +02:00
parent 4841a9b627
commit c3152fb088
No known key found for this signature in database
3 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,3 @@
config:
MD004: false
MD013: false

View file

@ -0,0 +1,12 @@
return {
{
"mfussenegger/nvim-lint",
opts = {
linters = {
["markdownlint-cli2"] = {
args = { "--config", vim.fn.stdpath("config") .. "/linters/global.markdownlint-cli2.yaml" },
},
},
},
},
}

View file

@ -9,8 +9,8 @@ return {
},
sections = {
lualine_a = { "mode" },
lualine_b = { "branch" },
lualine_c = {
lualine_b = {
{ "branch" },
{
"diff",
symbols = {
@ -28,6 +28,8 @@ return {
hint = "",
},
},
},
lualine_c = {
{ "filetype", icon_only = true, separator = "", padding = { left = 1, right = 0 } },
{ "filename", file_status = true, path = 1 },
},