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

Configure Feed

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

add rumdl and markdown-oxide

kacaii 17c58c02 a3a9878d

+9 -7
-5
.config/fish/modules/abbr.fish
··· 31 31 abbr jjn "jj new -m" 32 32 abbr jjp "jj mm; and jj push" 33 33 34 - # ๎™ Git 35 - abbr g git 36 - abbr gg lazygit 37 - abbr gp "git pull" 38 - 39 34 # ๎กง Poetry 40 35 abbr pea "poetry env activate | source" 41 36 abbr ped deactivate
+1
.config/fish/modules/integrations.fish
··· 5 5 command -q starship; and starship init fish | source 6 6 command -q batpipe; and eval (batpipe) 7 7 command -q batman; and batman --export-env | source 8 + command -q rumdl; and rumdl completions | source 8 9 command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 9 10 --color=bg+:#313244,spinner:#F5E0DC,hl:#F38BA8 \ 10 11 --color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC \
+3
.config/jj/config.toml
··· 105 105 "working_copy description" = { fg = "yellow", bold = false } 106 106 "working_copy description placeholder" = "bright black" 107 107 "working_copy empty description placeholder" = "green" 108 + 109 + [gg.ui] 110 + recent-workspaces = ["/home/kacaii/dotfiles"]
+1
.config/nvim/lua/plugins/conform.lua
··· 6 6 sql = { "sqlfluff" }, 7 7 gleam = { "gleam", "rustywind" }, 8 8 kdl = { "kdlfmt" }, 9 + markdown = { "rumdl" }, 9 10 }, 10 11 11 12 formatters = {
+1 -1
.config/nvim/lua/plugins/linter.lua
··· 1 1 return { 2 2 "mfussenegger/nvim-lint", 3 3 opts = { 4 - linters_by_ft = { sql = { "sqlfluff" }, markdown = {} }, 4 + linters_by_ft = { sql = { "sqlfluff" }, markdown = { "rumdl" } }, 5 5 linters = { sqlfluff = { args = { "lint", "--format=json" } } }, 6 6 }, 7 7 }
+1
.config/nvim/lua/plugins/lsp.lua
··· 4 4 servers = { 5 5 sqlfluff = { filetypes = { "sql" } }, 6 6 yamlls = { settings = { redhat = { telemetry = { enabled = false } } } }, 7 + markdown_oxide = { filetypes = { "markdown" } }, 7 8 8 9 tailwindcss = { 9 10 filetypes_include = { "gleam" },
+1 -1
.config/nvim/lua/plugins/mason.lua
··· 1 1 return { 2 2 "mason-org/mason.nvim", 3 - opts = { ensure_installed = { "deno", "fish-lsp" } }, 3 + opts = { ensure_installed = { "deno", "fish-lsp", "markdown-oxide" } }, 4 4 }
+1
packages.txt
··· 32 32 rebar3 33 33 ripgrep 34 34 ripgrep-all 35 + rumdl 35 36 starship 36 37 thunderbird 37 38 trash-cli