Remove ipkg tracking, Add separate script to Link only necessary docs #1

Merged
ayush merged 1 commits from devmeariver into main 2 days ago

@ -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", run = "make",
}) })
use({ use({
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim"
tag = "0.1.4",
}) })
use({ use({
"williamboman/mason.nvim", "williamboman/mason.nvim",
@ -34,7 +33,7 @@ require("packer").startup(function()
use ("folke/tokyonight.nvim") use ("folke/tokyonight.nvim")
use("nvim-treesitter/nvim-treesitter") use({"nvim-treesitter/nvim-treesitter", branch = "main"})
use("nvimtools/none-ls.nvim") use("nvimtools/none-ls.nvim")
@ -111,7 +110,7 @@ vim.filetype.add({
configs.setup({ configs.setup({
ensure_installed = "all", ensure_installed = "all",
ignore_install = { "" }, ignore_install = { "ipkg" },
sync_install = false, sync_install = false,
highlight = { highlight = {
enable = true, enable = true,

Loading…
Cancel
Save