Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: some fixes for use with Neovim #104

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ftdetect/nu.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vim.filetype.add({ extension = { nu = "nu" } })
2 changes: 2 additions & 0 deletions ftplugin/nu.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
local bufnr = vim.api.nvim_get_current_buf()
vim.bo[bufnr].commentstring = "# %s"
28 changes: 14 additions & 14 deletions plugin/init.lua
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
vim.filetype.add({ extension = { nu = "nu" } })
if vim.g.loaded_tree_sitter_nu then
return
end
vim.g.loaded_tree_sitter_nu = true

vim.api.nvim_create_autocmd("FileType", {
pattern = "nu",
callback = function(event) vim.bo[event.buf].commentstring = "# %s" end,
})

require("nvim-treesitter.parsers").get_parser_configs().nu = {
install_info = {
url = "https://github.com/nushell/tree-sitter-nu",
files = { "src/parser.c" },
branch = "main",
},
filetype = "nu",
}
pcall(function()
require("nvim-treesitter.parsers").get_parser_configs().nu = {
install_info = {
url = "https://github.com/nushell/tree-sitter-nu",
files = { "src/parser.c" },
branch = "main",
},
filetype = "nu",
}
end)