[feat] Add forked version of anyrun

This commit is contained in:
uttarayan21
2024-02-19 01:28:38 +05:30
parent 841d3ccdb2
commit 8e0733706c
7 changed files with 120 additions and 328 deletions

View File

@@ -105,22 +105,22 @@ vim.g.copilot_no_tab_map = true
require('keymaps')
require('plugins')
require 'nvim-treesitter.configs'.setup {
-- ensure_installed = "all",
ensure_installed = { "c", "rust", "toml", "lua", "json", "python", "cmake", "make", "typescript", "bash", "cpp",
"comment", "css", "fish", "http", "html", "vim", "yaml" },
highlight = {
enable = true, -- false will disable the whole extension
additional_vim_regex_highlighting = false,
},
}
require('nvim-treesitter.install').compilers = { "gcc-11", "clang" }
require('nvim-treesitter.parsers').get_parser_configs().just = {
install_info = {
url = "https://github.com/IndianBoy42/tree-sitter-just", -- local path or git repo
files = { "src/parser.c", "src/scanner.cc" },
branch = "main",
use_makefile = true, -- this may be necessary on MacOS (try if you see compiler errors)
},
maintainers = { "@IndianBoy42" },
}
-- require 'nvim-treesitter.configs'.setup {
-- -- ensure_installed = "all",
-- ensure_installed = { "c", "rust", "toml", "lua", "json", "python", "cmake", "make", "typescript", "bash", "cpp",
-- "comment", "css", "fish", "http", "html", "vim", "yaml" },
-- highlight = {
-- enable = true, -- false will disable the whole extension
-- additional_vim_regex_highlighting = false,
-- },
-- }
-- require('nvim-treesitter.install').compilers = { "gcc-11", "clang" }
-- require('nvim-treesitter.parsers').get_parser_configs().just = {
-- install_info = {
-- url = "https://github.com/IndianBoy42/tree-sitter-just", -- local path or git repo
-- files = { "src/parser.c", "src/scanner.cc" },
-- branch = "main",
-- use_makefile = true, -- this may be necessary on MacOS (try if you see compiler errors)
-- },
-- maintainers = { "@IndianBoy42" },
-- }