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