[feat] Fix nvim config

This commit is contained in:
uttarayan21
2024-02-20 02:50:09 +05:30
parent 67726f3120
commit 9983668d75
9 changed files with 26 additions and 152 deletions

View File

@@ -104,23 +104,3 @@ 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" },
-- }