neovim configuration using rocks.nvim plugin manager

feat: janet/scheme support

+10
+3
after/ftplugin/janet.vim
··· 1 + setlocal commentstring=#\ %s 2 + setlocal lisp 3 + setlocal tabstop=2
+4
lua/plugins/conform.lua
··· 27 27 ["nix"] = { "nixfmt" }, 28 28 ["swift"] = { "swiftformat" }, 29 29 ["rust"] = { "rustfmt", lsp_format = "fallback" }, 30 + ["janet"] = { "janet_format" }, 30 31 }, 31 32 formatters = { 32 33 injected = { options = { ignore_errors = true } }, ··· 35 36 -- FIXME: this doesn't work for some reason 36 37 PRETTIERD_DEFAULT_CONFIG = vim.api.nvim_get_runtime_file("externals/prettier/prettierrc.json", false)[1], 37 38 }, 39 + }, 40 + janet_format = { 41 + command = "janet-format", 38 42 }, 39 43 }, 40 44 })
+1
lua/plugins/indent-blankline.lua
··· 5 5 exclude = { 6 6 filetypes = { 7 7 "octo", 8 + "janet", 8 9 } 9 10 } 10 11 })
+2
rocks.toml
··· 100 100 "sense.nvim" = "1.0.1" 101 101 "rest.nvim"= "3.12.0" 102 102 "zeta.nvim"= "rocksdev" 103 + tree-sitter-janet_simple = "0.0.33" 104 + tree-sitter-scheme = "0.0.31" 103 105 104 106 # [plugins."xcodebuild.nvim"] 105 107 # git = "wojciech-kulik/xcodebuild.nvim"