-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nvim/init.lua #7
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Almost all my exiting nvim logic is in there, but slightly neater because I can use a real programming language. - Plugins Added - packer.nvim - nvim-treesitter - telescope.nvim - Plugins Swapped - { NERDTree, CHADTree, nerdtree-git-plugin } -> nvim-tree - vim-gitgutter -> gitsigns - base16-vim -> nvim-base16.lua
Need to get jump to definition working
- Get code completion and jump to definition working pretty well - Delete some old vim code (including init.vim, gonna have to use git history to recover it if need be)
- Restore vim-grepper as I'm certain that I'll still use it because of muscle memory - Fix the number cycling functions - Make packer self bootstrap
This was way harder than it should be
Add crosshair logic to augroup
- Path and buffer text autocompletion now works. It even autocompletes my search terms! - Swap out delimitmate for nvim-autopairs and nvim-ts-autotag - Swap out tcomment for Comment.nvim - Restore ripgrep as the fast searching tool - Setup rbenv and stop ignoring all sql files
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Almost all my exiting nvim logic is in there, but slightly neater because I can use a real programming language.
Background
We have a
#vim
channel in the @chordcommerce Slack. One of my coworkers posted that he had ported his Neovim configuration to Lua. Before you know it, literally all of the members, myself included, went ahead ported their Neovim setups to Lua over the weekend. Peer pressure works!My vimrc has been around for about a decade in various states. It is heavily customized and porting all of it's
autocmd
s and keyboard shortcuts to Lua was so freeing! Also, the need code completion engine that I am using is head and shoulders above coc.nvim!