Compare commits

..

No commits in common. "47a56eca84e8a8768734595e7ce13205593d76e4" and "44b45b7c1154d72e2ee645673b11afb3fc931df2" have entirely different histories.

5 changed files with 3 additions and 39 deletions

View File

@ -1,6 +1,5 @@
{
"LuaSnip": { "branch": "master", "commit": "e808bee352d1a6fcf902ca1a71cee76e60e24071" },
"barbecue": { "branch": "main", "commit": "cd7e7da622d68136e13721865b4d919efd6325ed" },
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
@ -23,8 +22,8 @@
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
"nvim-lint": { "branch": "master", "commit": "b3ab4ba88845893663d0b7122ee82921adf28358" },
"nvim-lspconfig": { "branch": "master", "commit": "541f3a2781de481bb84883889e4d9f0904250a56" },
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
"nvim-treesitter": { "branch": "master", "commit": "03452942dfbd998701d4123ccad2090e1bc7e9f1" },
"nvim-treesitter-context": { "branch": "master", "commit": "78a81c7494e7d1a08dd1200b556933e513fd9f29" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "0d79d169fcd45a8da464727ac893044728f121d4" },
"nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" },
"oil.nvim": { "branch": "master", "commit": "39dbf875861449cf09e936fa80073f3413e9439c" },

View File

@ -1,17 +0,0 @@
return {
'utilyre/barbecue.nvim',
name = 'barbecue',
version = '*',
dependencies = {
'SmiteshP/nvim-navic',
'nvim-tree/nvim-web-devicons',
},
opts = {
exclude_filetypes = {
'gitcommit',
},
modifiers = {
basename = ':e',
},
},
}

View File

@ -28,9 +28,6 @@ return {
-- Allows extra capabilities provided by nvim-cmp
'hrsh7th/cmp-nvim-lsp',
-- Code context using LSP info
'SmiteshP/nvim-navic',
},
config = function()
-- Brief aside: **What is LSP?**
@ -181,19 +178,13 @@ return {
local servers = {
powershell_es = {},
rust_analyzer = {},
intelephense = {},
tailwindcss = {},
omnisharp = {},
pyright = {},
svelte = {},
ts_ls = {},
gopls = {},
html = {
filetypes = {
'html',
'ejs',
},
},
intelephense = {},
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
--
-- Some languages (like typescript) have entire language plugins that can be useful:

View File

@ -2,6 +2,7 @@ return {
{ -- Highlight, edit, and navigate code
'nvim-treesitter/nvim-treesitter',
dependencies = {
'nvim-treesitter/nvim-treesitter-context',
'nvim-treesitter/nvim-treesitter-textobjects',
},
build = ':TSUpdate',

View File

@ -96,16 +96,6 @@ vim.opt.guicursor = 'n-v-i-c:block-Cursor'
vim.o.laststatus = 3
vim.api.nvim_set_hl(0, 'WinSeparator', { bg = nil })
-- Disable tabpages
vim.api.nvim_create_autocmd('TabNew', {
group = vim.api.nvim_create_augroup('TabGroup', { clear = true }),
callback = function()
local buf = vim.api.nvim_get_current_buf()
vim.cmd 'tabclose'
vim.api.nvim_set_current_buf(buf)
end,
})
vim.api.nvim_create_autocmd('UIEnter', {
group = vim.api.nvim_create_augroup('SetGUISettings', { clear = true }),
callback = function()