From 35e1c0a25f9f924d71dea92fae1b084a6e0b4aec Mon Sep 17 00:00:00 2001 From: mvsrgc <14826113+mvsrgc@users.noreply.github.com> Date: Tue, 11 Apr 2023 15:57:21 -0400 Subject: [PATCH] More changes. --- init.lua | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/init.lua b/init.lua index a98417a2..eabf0b6d 100644 --- a/init.lua +++ b/init.lua @@ -17,14 +17,7 @@ if not vim.loop.fs_stat(lazypath) then end vim.opt.rtp:prepend(lazypath) --- NOTE: Here is where you install your plugins. --- You can configure plugins using the `config` key. --- --- You can also configure plugins after the setup call, --- as they will be available in your neovim runtime. require('lazy').setup({ - -- NOTE: First, some plugins that don't require any configuration - -- Detect tabstop and shiftwidth automatically 'tpope/vim-sleuth', @@ -90,7 +83,6 @@ require('lazy').setup({ { -- Add indentation guides even on blank lines 'lukas-reineke/indent-blankline.nvim', - -- Enable `lukas-reineke/indent-blankline.nvim` -- See `:help indent_blankline.txt` opts = { char = '┊', @@ -104,13 +96,8 @@ require('lazy').setup({ -- Fuzzy Finder (files, lsp, etc) { 'nvim-telescope/telescope.nvim', version = '*', dependencies = { 'nvim-lua/plenary.nvim' } }, - -- Fuzzy Finder Algorithm which requires local dependencies to be built. - -- Only load if `make` is available. Make sure you have the system - -- requirements installed. { 'nvim-telescope/telescope-fzf-native.nvim', - -- NOTE: If you are having trouble with this installation, - -- refer to the README for telescope-fzf-native for more instructions. build = 'make', cond = function() return vim.fn.executable 'make' == 1 @@ -143,8 +130,6 @@ vim.wo.number = true vim.o.mouse = 'a' -- Sync clipboard between OS and Neovim. --- Remove this option if you want your OS clipboard to remain independent. --- See `:help 'clipboard'` vim.o.clipboard = 'unnamedplus' -- Enable break indent