From 3510c287d9678ae5485847e99068446ad88484ac Mon Sep 17 00:00:00 2001 From: Andrei Baltariu Date: Tue, 1 Apr 2025 11:54:41 +0300 Subject: [PATCH 1/2] Test commit --- init.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/init.lua b/init.lua index 40a23a79f6d..3c8ac44fb3d 100644 --- a/init.lua +++ b/init.lua @@ -11,6 +11,8 @@ Kickstart.nvim is a template for your own configuration. Once you've done that, you should start exploring, configuring and tinkering to explore Neovim! + // tests + If you don't know anything about Lua, I recommend taking some time to read through a guide. One possible example: @@ -224,7 +226,7 @@ require('lazy').setup { -- Then, because we use the `opts` key (recommended), the configuration runs -- after the plugin has been loaded as `require(MODULE).setup(opts)`. - { -- Useful plugin to show you pending keybinds. + { -- Useful plugin to show you pending keybinds. 'folke/which-key.nvim', event = 'VimEnter', -- Sets the loading event to 'VimEnter' opts = { @@ -270,7 +272,7 @@ require('lazy').setup { -- Document existing key chains spec = { - { 'c', group = '[C]ode', mode = { 'n', 'x' } }, + { 'c', group = '[C]ode', mode = { 'n', 'x' } }, { 'd', group = '[D]ocument' }, { 'r', group = '[R]ename' }, { 's', group = '[S]earch' }, @@ -310,7 +312,7 @@ require('lazy').setup { { 'nvim-telescope/telescope-ui-select.nvim' }, -- Useful for getting pretty icons, but requires a Nerd Font. - { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, + { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, }, config = function() -- Telescope is a fuzzy finder that comes with a lot of different things that @@ -458,7 +460,7 @@ require('lazy').setup { end, }, -- Useful plugin to show you pending keybinds. - { 'folke/which-key.nvim', opts = {} }, + { 'folke/which-key.nvim', opts = {} }, { -- Adds git related signs to the gutter, as well as utilities for managing changes 'lewis6991/gitsigns.nvim', @@ -613,7 +615,7 @@ require('lazy').setup { -- vim.diagnostic.config { signs = { text = diagnostic_signs } } -- end - { -- Useful plugin to show you pending keybinds. + { -- Useful plugin to show you pending keybinds. 'folke/which-key.nvim', event = 'VimEnter', -- Sets the loading event to 'VimEnter' opts = { @@ -656,7 +658,7 @@ require('lazy').setup { -- Document existing key chains spec = { - { 'c', group = '[C]ode', mode = { 'n', 'x' } }, + { 'c', group = '[C]ode', mode = { 'n', 'x' } }, { 'd', group = '[D]ocument' }, { 'r', group = '[R]ename' }, { 's', group = '[S]earch' }, @@ -726,7 +728,7 @@ require('lazy').setup { { 'nvim-telescope/telescope-ui-select.nvim' }, -- Useful for getting pretty icons, but requires a Nerd Font. - { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, + { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, }, config = function() -- Telescope is a fuzzy finder that comes with a lot of different things that @@ -824,7 +826,7 @@ require('lazy').setup { }, }, }, - { 'Bilal2453/luvit-meta', lazy = true }, + { 'Bilal2453/luvit-meta', lazy = true }, { -- Main LSP Configuration 'neovim/nvim-lspconfig', @@ -836,7 +838,7 @@ require('lazy').setup { -- Useful status updates for LSP. -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` - { 'j-hui/fidget.nvim', opts = {} }, + { 'j-hui/fidget.nvim', opts = {} }, -- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins -- used for completion, annotations and signatures of Neovim apis From 1719240a276a3927797f741ae95b671a878e4cad Mon Sep 17 00:00:00 2001 From: Andrei Baltariu Date: Tue, 1 Apr 2025 12:55:32 +0300 Subject: [PATCH 2/2] Test --- init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.lua b/init.lua index 3c8ac44fb3d..dd31a8a88b1 100644 --- a/init.lua +++ b/init.lua @@ -11,8 +11,6 @@ Kickstart.nvim is a template for your own configuration. Once you've done that, you should start exploring, configuring and tinkering to explore Neovim! - // tests - If you don't know anything about Lua, I recommend taking some time to read through a guide. One possible example: