nvim,foot,and bashrc

This commit is contained in:
supa
2026-07-29 10:01:21 -05:00
commit 8db4659aa6
3 changed files with 364 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
local function bootstrap_pckr()
local pckr_path = vim.fn.stdpath("data") .. "/pckr/pckr.nvim"
if not (vim.uv or vim.loop).fs_stat(pckr_path) then
vim.fn.system({
'git',
'clone',
"--filter=blob:none",
'https://github.com/lewis6991/pckr.nvim',
pckr_path
})
end
vim.opt.rtp:prepend(pckr_path)
end
bootstrap_pckr()
require('pckr').add{
'xiyaowong/transparent.nvim',
'https://github.com/neovim/nvim-lspconfig',
'neovim/nvim-lspconfig',
'nmac427/guess-indent.nvim',
-- 'windwp/nvim-autopairs'
}
require('guess-indent').setup {}
--require('nvim-autopairs').setup {}
vim.wo.number = true
vim.lsp.enable('lua_ls','bashls','pylsp','nixd','markdown_oxide')
vim.opt.clipboard:append('unnamedplus')