actually fixed tabs

This commit is contained in:
Aria Nolan 2023-07-16 13:25:55 -04:00
parent 1d3fc8f560
commit de9b0eefed

View file

@ -37,76 +37,76 @@ lvim.builtin.treesitter.ensure_installed = { "cpp", "c" }
-- Additional Plugins
table.insert(lvim.plugins, {
"p00f/clangd_extensions.nvim",
"catppuccin/nvim",
"nyoom-engineering/oxocarbon.nvim",
"rose-pine/neovim",
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
require("neo-tree").setup({
close_if_last_window = true,
window = {
width = 30,
},
buffers = {
follow_current_file = true,
},
filesystem = {
follow_current_file = true,
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_by_name = {
"node_modules"
},
never_show = {
".DS_Store",
"thumbs.db"
},
},
},
})
end
},
-- "lervag/vimtex",
-- "kdheepak/cmp-latex-symbols",
-- "KeitaNakamura/tex-conceal.vim",
"SirVer/ultisnips",
{
"ggandor/leap.nvim",
name = "leap",
config = function()
require("leap").add_default_mappings()
end,
},
{
"mrjones2014/nvim-ts-rainbow",
},
{
"nacro90/numb.nvim",
event = "BufRead",
config = function()
require("numb").setup {
show_numbers = true, -- Enable 'number' for the window while peeking
show_cursorline = true, -- Enable 'cursorline' for the window while peeking
}
end,
},
{
"kevinhwang91/rnvimr",
cmd = "RnvimrToggle",
config = function()
vim.g.rnvimr_draw_border = 1
vim.g.rnvimr_pick_enable = 1
vim.g.rnvimr_bw_enable = 1
end,
},
"catppuccin/nvim",
"nyoom-engineering/oxocarbon.nvim",
"rose-pine/neovim",
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
require("neo-tree").setup({
close_if_last_window = true,
window = {
width = 30,
},
buffers = {
follow_current_file = true,
},
filesystem = {
follow_current_file = true,
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_by_name = {
"node_modules"
},
never_show = {
".DS_Store",
"thumbs.db"
},
},
},
})
end
},
-- "lervag/vimtex",
-- "kdheepak/cmp-latex-symbols",
-- "KeitaNakamura/tex-conceal.vim",
"SirVer/ultisnips",
{
"ggandor/leap.nvim",
name = "leap",
config = function()
require("leap").add_default_mappings()
end,
},
{
"mrjones2014/nvim-ts-rainbow",
},
{
"nacro90/numb.nvim",
event = "BufRead",
config = function()
require("numb").setup {
show_numbers = true, -- Enable 'number' for the window while peeking
show_cursorline = true, -- Enable 'cursorline' for the window while peeking
}
end,
},
{
"kevinhwang91/rnvimr",
cmd = "RnvimrToggle",
config = function()
vim.g.rnvimr_draw_border = 1
vim.g.rnvimr_pick_enable = 1
vim.g.rnvimr_bw_enable = 1
end,
},
})
vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "clangd" })