From 9ca19d45f732d061b7da4e060e0024a070f9a81c Mon Sep 17 00:00:00 2001 From: Matthew Schumaecker Date: Sat, 3 Aug 2024 21:26:27 -0400 Subject: [PATCH] cleaned up unneeded files and directories --- desktop.ini | Bin 282 -> 0 bytes doc/kickstart.txt | 24 ------------------------ doc/tags | 3 --- init.lua | 14 +++++++------- 4 files changed, 7 insertions(+), 34 deletions(-) delete mode 100644 desktop.ini delete mode 100644 doc/kickstart.txt delete mode 100644 doc/tags diff --git a/desktop.ini b/desktop.ini deleted file mode 100644 index c3a4af455b014558387e4d4641a96787d17e816e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmb7;y9&Zk5JXQc_!)K@(14F3AXo`vp`}^`jT%S{7%lYU)sujTcCzfD9>FyV?UUS2@~r+`0_tGpZ9zbt%mB>l^*$mYOH#V6L-We))A764qWX1=lhJ diff --git a/doc/kickstart.txt b/doc/kickstart.txt deleted file mode 100644 index cb87ac3f..00000000 --- a/doc/kickstart.txt +++ /dev/null @@ -1,24 +0,0 @@ -================================================================================ -INTRODUCTION *kickstart.nvim* - -Kickstart.nvim is a project to help you get started on your neovim journey. - - *kickstart-is-not* -It is not: -- Complete framework for every plugin under the sun -- Place to add every plugin that could ever be useful - - *kickstart-is* -It is: -- Somewhere that has a good start for the most common "IDE" type features: - - autocompletion - - goto-definition - - find references - - fuzzy finding - - and hinting at what more can be done :) -- A place to _kickstart_ your journey. - - You should fork this project and use/modify it so that it matches your - style and preferences. If you don't want to do that, there are probably - other projects that would fit much better for you (and that's great!)! - - vim:tw=78:ts=8:ft=help:norl: diff --git a/doc/tags b/doc/tags deleted file mode 100644 index 687ae772..00000000 --- a/doc/tags +++ /dev/null @@ -1,3 +0,0 @@ -kickstart-is kickstart.txt /*kickstart-is* -kickstart-is-not kickstart.txt /*kickstart-is-not* -kickstart.nvim kickstart.txt /*kickstart.nvim* diff --git a/init.lua b/init.lua index 079a7fb7..cae81e39 100644 --- a/init.lua +++ b/init.lua @@ -1,6 +1,6 @@ -- [[ Install `lazy.nvim` plugin manager ]] -require('keymap') -- keymaps are in a separate module lua/keymap.lua -require('settings') -- keymaps are in a separate module lua/keymap.lua +require 'keymap' -- keymaps are in a separate module lua/keymap.lua +require 'settings' -- keymaps are in a separate module lua/keymap.lua -- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' if not vim.uv.fs_stat(lazypath) then @@ -29,7 +29,7 @@ vim.opt.rtp:prepend(lazypath) require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically - { 'echasnovski/mini.nvim', version = false }, + { 'echasnovski/mini.nvim', version = false }, -- NOTE: Plugins can also be added by using a table, -- with the first argument being the link and the following -- keys can be used to configure plugin behavior/loading/etc. @@ -70,7 +70,7 @@ require('lazy').setup({ -- after the plugin has been loaded: -- config = function() ... 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' config = function() -- This is the function that runs, AFTER loading @@ -118,7 +118,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 @@ -214,7 +214,7 @@ require('lazy').setup({ }, }, }, - { 'Bilal2453/luvit-meta', lazy = true }, + { 'Bilal2453/luvit-meta', lazy = true }, { -- Main LSP Configuration 'neovim/nvim-lspconfig', @@ -226,7 +226,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 = {} }, -- Allows extra capabilities provided by nvim-cmp 'hrsh7th/cmp-nvim-lsp',