cleaned up unneeded files and directories

This commit is contained in:
Matthew Schumaecker 2024-08-03 21:26:27 -04:00
parent a2b244c477
commit 9ca19d45f7
4 changed files with 7 additions and 34 deletions

Binary file not shown.

View File

@ -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:

View File

@ -1,3 +0,0 @@
kickstart-is kickstart.txt /*kickstart-is*
kickstart-is-not kickstart.txt /*kickstart-is-not*
kickstart.nvim kickstart.txt /*kickstart.nvim*

View File

@ -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