tangled
alpha
login
or
join now
boltless.me
/
nvim_rocks
0
fork
atom
neovim configuration using rocks.nvim plugin manager
0
fork
atom
overview
issues
pulls
pipelines
feat: janet/scheme support
Seongmin Lee
11 months ago
91653d72
47227461
+10
4 changed files
expand all
collapse all
unified
split
after
ftplugin
janet.vim
lua
plugins
conform.lua
indent-blankline.lua
rocks.toml
+3
after/ftplugin/janet.vim
···
1
1
+
setlocal commentstring=#\ %s
2
2
+
setlocal lisp
3
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
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
39
+
},
40
40
+
janet_format = {
41
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
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
103
+
tree-sitter-janet_simple = "0.0.33"
104
104
+
tree-sitter-scheme = "0.0.31"
103
105
104
106
# [plugins."xcodebuild.nvim"]
105
107
# git = "wojciech-kulik/xcodebuild.nvim"