chore: ignore ipkg for treesitter as the parser has been randomly removed

devmeariver
Ayush Mukherjee 1 day ago
parent 339b36dfaa
commit bcd13a4668

@ -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

@ -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,

Loading…
Cancel
Save