๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rename conform_nvim to conform

Kacaii 244f646e 9a285b39

+28 -33
-14
.config/nvim/lua/config/autocmds.lua
··· 1 1 vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, { command = "set nospell" }) 2 - 3 - local gleam_rustywind = vim.api.nvim_create_augroup("gleam_rustywind", { clear = true }) 4 - vim.api.nvim_create_autocmd({ "VimEnter", "DirChanged", "BufEnter" }, { 5 - group = gleam_rustywind, 6 - pattern = { "*.gleam" }, 7 - callback = function(_ev) 8 - require("conform").formatters.rustywind = { 9 - prepend_args = { 10 - "--custom-regex", 11 - "class\\([\\r\\n\\s]{0,}[\\\"\\']([_a-zA-Z0-9\\s\\-\\:\\/]+)[\\\"\\']", 12 - }, 13 - } 14 - end, 15 - })
+21
.config/nvim/lua/plugins/conform.lua
··· 1 + return { 2 + "stevearc/conform.nvim", 3 + opts = { 4 + 5 + formatters_by_ft = { 6 + sql = { "sqlfluff" }, 7 + gleam = { "gleam", "rustywind" }, 8 + }, 9 + 10 + formatters = { 11 + sqlfluff = { args = { "format", "-" } }, 12 + 13 + rustywind = { 14 + prepend_args = { 15 + "--custom-regex", 16 + "class\\([\\r\\n\\s]{0,}[\\\"\\']([_a-zA-Z0-9\\s\\-\\:\\/]+)[\\\"\\']", 17 + }, 18 + }, 19 + }, 20 + }, 21 + }
-10
.config/nvim/lua/plugins/conform_nvim.lua
··· 1 - return { 2 - "stevearc/conform.nvim", 3 - opts = { 4 - formatters = { sqlfluff = { args = { "format", "-" } } }, 5 - formatters_by_ft = { 6 - sql = { "sqlfluff" }, 7 - gleam = { "gleam", "rustywind" }, 8 - }, 9 - }, 10 - }
+7 -9
.config/nvim/lua/plugins/quicker.lua
··· 1 1 return { 2 - "stevearc/quicker.nvim", 3 - ft = "qf", 4 - ---@module "quicker" 5 - ---@type quicker.SetupOptions 6 - opts = { 7 - buflisted = true, 8 - number = true, 9 - borders = { vert = " " }, 10 - }, 2 + "stevearc/quicker.nvim", 3 + ft = "qf", 4 + opts = { 5 + buflisted = true, 6 + number = true, 7 + borders = { vert = " " }, 8 + }, 11 9 }