diff --git a/dots/.config/nvim/lua/core/filetypes.lua b/dots/.config/nvim/lua/core/filetypes.lua index 8f10d6d6..a2c319f2 100644 --- a/dots/.config/nvim/lua/core/filetypes.lua +++ b/dots/.config/nvim/lua/core/filetypes.lua @@ -9,7 +9,7 @@ M.setup = function() [".*%.dockerfile"] = "dockerfile", [".*/Azure%-Pipelines/.*%.yml"] = "azure-pipelines", [".*/Azure%-Pipelines/.*%.yaml"] = "azure-pipelines", - [".*/waybar/config"] = "jsonc" + [".*/waybar/config"] = "jsonc", }, }) diff --git a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua index 0acd5805..43991c18 100644 --- a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua +++ b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua @@ -132,12 +132,12 @@ require("kanagawa").setup({ Headline = { bg = colors.sumiInk2 }, HeadlineReversed = { bg = colors.sumiInk1 }, LspInlayHint = { link = "Comment", italic = true }, - ['@text.title.1.marker.markdown'] = { fg = colors.surimiOrange }, - ['@text.title.2.marker.markdown'] = { fg = colors.surimiOrange }, - ['@text.title.3.marker.markdown'] = { fg = colors.surimiOrange }, - ['@text.title.4.marker.markdown'] = { fg = colors.surimiOrange }, - ['@text.title.5.marker.markdown'] = { fg = colors.surimiOrange }, - ['@text.title.6.marker.markdown'] = { fg = colors.surimiOrange } + ["@text.title.1.marker.markdown"] = { fg = colors.surimiOrange }, + ["@text.title.2.marker.markdown"] = { fg = colors.surimiOrange }, + ["@text.title.3.marker.markdown"] = { fg = colors.surimiOrange }, + ["@text.title.4.marker.markdown"] = { fg = colors.surimiOrange }, + ["@text.title.5.marker.markdown"] = { fg = colors.surimiOrange }, + ["@text.title.6.marker.markdown"] = { fg = colors.surimiOrange }, } return overrides diff --git a/dots/.config/nvim/lua/plugins/configs/telescope-nvim.lua b/dots/.config/nvim/lua/plugins/configs/telescope-nvim.lua index 8c9e25b6..ac6ef16c 100755 --- a/dots/.config/nvim/lua/plugins/configs/telescope-nvim.lua +++ b/dots/.config/nvim/lua/plugins/configs/telescope-nvim.lua @@ -6,7 +6,7 @@ telescope.setup({ find_files = { find_command = { "fd", - "--no-ignore" + "--no-ignore", }, hidden = true, }, diff --git a/dots/.config/nvim/lua/plugins/plugins.lua b/dots/.config/nvim/lua/plugins/plugins.lua index a7ff9532..0e7f49a0 100755 --- a/dots/.config/nvim/lua/plugins/plugins.lua +++ b/dots/.config/nvim/lua/plugins/plugins.lua @@ -122,7 +122,7 @@ lazy.setup({ "nvim-telescope/telescope-ui-select.nvim", "debugloop/telescope-undo.nvim", { "nvim-telescope/telescope-smart-history.nvim", dependencies = "tami5/sqlite.lua" }, - { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, }, config = function() require("plugins.configs.telescope-nvim") @@ -328,8 +328,8 @@ lazy.setup({ setopt = true, relculright = false, segments = { - { text = { "%s" }, click = "v:lua.ScSa" }, - { text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, + { text = { "%s" }, click = "v:lua.ScSa" }, + { text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, { text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" }, }, }) @@ -455,7 +455,7 @@ lazy.setup({ "echasnovski/mini.nvim", event = "VeryLazy", config = function() - require('mini.align').setup({}) + require("mini.align").setup({}) require("mini.cursorword").setup({}) end, }, @@ -694,13 +694,13 @@ lazy.setup({ enable = true, head = { cursor = "⯈", texthl = "SmoothCursorCursor", linehl = nil }, body = { - { cursor = "", texthl = "SmoothCursorTrailBig1" }, - { cursor = "", texthl = "SmoothCursorTrailBig2" }, + { cursor = "", texthl = "SmoothCursorTrailBig1" }, + { cursor = "", texthl = "SmoothCursorTrailBig2" }, { cursor = "󰝥", texthl = "SmoothCursorTrailMedium" }, { cursor = "󰝥", texthl = "SmoothCursorTrailMedium" }, - { cursor = "•", texthl = "SmoothCursorTrailSmall" }, - { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, - { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, + { cursor = "•", texthl = "SmoothCursorTrailSmall" }, + { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, + { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, }, }, disabled_filetypes = { "NeogitNotification" },