From de9b0eefeda5a3f451d085f14b868273f4be2392 Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Sun, 16 Jul 2023 13:25:55 -0400 Subject: [PATCH] actually fixed tabs --- config.lua | 140 ++++++++++++++++++++++++++--------------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/config.lua b/config.lua index fc33a41..8623e27 100644 --- a/config.lua +++ b/config.lua @@ -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" })