From bcd13a4668c69dc4001a1801ca236f1571a53aa3 Mon Sep 17 00:00:00 2001 From: Ayush Mukherjee Date: Mon, 21 Jul 2025 19:24:43 +0530 Subject: [PATCH] chore: ignore ipkg for treesitter as the parser has been randomly removed --- link_lite.sh | 6 ++++++ nvim/init.lua | 7 +++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100755 link_lite.sh diff --git a/link_lite.sh b/link_lite.sh new file mode 100755 index 0000000..ab856ce --- /dev/null +++ b/link_lite.sh @@ -0,0 +1,6 @@ +#!/bin/sh +# Symlinks all the dotfiles to the necessary places. +ln -s $(pwd)/.bashrc ~/.bashrc +ln -s $(pwd)/makepkg.conf ~/.config/makepkg.conf +ln -s $(pwd)/nvim ~/.config/nvim +ln -s $(pwd)/.tmux.conf ~/.tmux.conf diff --git a/nvim/init.lua b/nvim/init.lua index 0df9669..a13af83 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -18,8 +18,7 @@ require("packer").startup(function() run = "make", }) use({ - "nvim-telescope/telescope.nvim", - tag = "0.1.4", + "nvim-telescope/telescope.nvim" }) use({ "williamboman/mason.nvim", @@ -34,7 +33,7 @@ require("packer").startup(function() use ("folke/tokyonight.nvim") - use("nvim-treesitter/nvim-treesitter") + use({"nvim-treesitter/nvim-treesitter", branch = "main"}) use("nvimtools/none-ls.nvim") @@ -111,7 +110,7 @@ vim.filetype.add({ configs.setup({ ensure_installed = "all", - ignore_install = { "" }, + ignore_install = { "ipkg" }, sync_install = false, highlight = { enable = true,