summaryrefslogtreecommitdiffstats
path: root/nvim/init.lua
Commit message (Collapse)AuthorAgeFilesLines
* Add telescope search resume key bindingDilshod Temirkhodjaev2023-09-041-0/+1
|
* treesitter: ensure 'javascript' installed along with typescript and tsxGeorge Angelopoulos2023-08-271-1/+1
| | | | | | This parser is actually needed for some *JSX* parsing, and since typescript and tsx are already getting installed, it makes sense to also install the javascript parser.
* Revert gitsigns keymaps but fix vimdiff and fugitive conflictGeorge Angelopoulos2023-08-221-3/+14
| | | | | | | | | | | | | | | | | | Originally, the keymaps for jumping to next and previous git hunks were ]c and [c. This was changed in #323 (0c35586) because they overwrote the built-in vimdiff keymaps. However, the more traditional solution is to have ]c and [c *extend* the built-in keymap. This is what fugitive and gitgutter have been doing for years. Gitsigns doesn't do this by itself, but it has a recommended keymap configuration on which the present patch is based: https://github.com/lewis6991/gitsigns.nvim#keymaps The only thing I've added is to have the keymaps work in visual mode as well, which is the same behavior as the built in vimdiff keymaps.
* Update init.luaChris Patti2023-08-211-1/+1
| | | | | | Fix typo in original. Co-authored-by: Luis G Estrades <luisgarciaestrades@gmail.com>
* Use telescope for goto implementationE. Aakash2023-08-201-1/+1
|
* Update init.luaSmig2023-08-101-0/+2
| | | | | added a URL to the lua-guide may help others who miss the :help lua-guide
* fix: missing commadaan2023-08-061-1/+1
|
* fix: fix bracketsPeter Benjamin2023-08-051-12/+12
|
* fix(init): turn telescope-fzf-native into a dependecyPeter Benjamin2023-08-051-12/+17
|
* Fix typo in init.luaIkko Eltociear Ashimine2023-07-311-1/+1
| | | | releated -> related
* Fix bug when server not explicitely defined in configuration but installedMerel Jossart2023-07-251-1/+1
|
* setup more language servers i use + allow customizing filetypesNumkil2023-07-241-1/+6
|
* Remove timeoutAndrew Stewart2023-07-171-1/+0
|
* Make init.lua copy-paste friendlyDheepak Krishnamurthy2023-07-011-2/+3
|
* Fix typo in ignorecase commentilian2023-06-181-1/+1
| | | | | In order to perform a case-sensitive search with ignorecase, the pattern should contain `\C` instead of `/C`.
* Add legacy tag to fidget to avoid deprecation warningGavin2023-06-141-1/+1
|
* Fixes #336 - Enabale treesitter indent for PythonChris Patti2023-06-071-1/+1
| | | | Tested in my local configuratoin. Indenting works great.
* Revert "Refactor theme and status line into their own file"Chris Patti2023-06-041-6/+23
| | | | This reverts commit 4dd2f71906c4278356f80736ee7f3faaf3cdb3ca.
* Refactor theme and status line into their own fileChris Patti2023-06-031-23/+6
|
* FIX: Conflict with vimdiff keybindingLuiz Antonio Calliari Filho2023-05-251-2/+2
|
* refact: remove after/ reference in readme, other clean-up itemsGaurav Bhatnagar2023-05-221-5/+3
|
* refact: add cmp comments, otherGaurav Bhatnagar2023-05-211-3/+14
|
* refact: styluaGaurav Bhatnagar2023-05-161-12/+12
|
* Udated tree sitter to use latest release branchdec2023-05-081-12/+18
|
* add local jumping to shift tabGaurav Bhatnagar2023-05-071-1/+1
|
* change luasnip tab jumping to locally jumpableGaurav Bhatnagar2023-05-071-1/+1
|
* Added friendly snippet supportSamPosh2023-05-021-2/+2
|
* Add <C-n>, <C-p> mappings to nvim-cmp setupVictor Wallsten2023-04-271-0/+2
|
* setup a standard binding for searching git files using telescopeliepieshov2023-04-241-0/+1
|
* fix: move the Mason setup time forward from before (#210)KudoLayton2023-04-131-4/+1
| | | | This commit fix the Mason [#1045](https://github.com/williamboman/mason.nvim/issues/1045) issue. Quickly set up Mason to avoid DAP-related startup error messages.
* fix: use :TSInstall on build with nvim-treesitter (#261)Sebastian Lyng Johansen2023-04-121-3/+1
|
* help treesitter module has been renamed to vimdoc in master (#248)Chris Patti2023-04-071-1/+1
|
* FIX: Updating command description.Luiz Antonio Calliari Filho2023-03-121-2/+2
|
* Feat: Simplifying codeLuiz Antonio Calliari Filho2023-03-061-11/+3
|
* added descriptions to Diagnostic keymaps (#191)Philipp Szechenyi2023-02-271-4/+4
| | | | | | * Update init.lua * Update init.lua
* Adding [+c and ]+c to move to diffs and leader+ph to show a pop up with the ↵Luiz Antonio Calliari Filho2023-02-261-0/+13
| | | | preview diff value.
* feat: Add clipboard sync by default (#166)Tudor2023-02-171-0/+5
|
* feat: move to lazy.nvim package manager and add first plugins (#178)TJ DeVries2023-02-171-121/+185
| | | | | | | | | | | | | | | | | | | | | | | Closes #175 Closes #177 Closes #173 Closes #169 Closes #161 Closes #144 Closes #138 Fixes #136 Closes #137 Closes #131 Closes #117 Closes #130 Closes #115 Closes #86 Closes #105 Closes #70 Fixes #176 Fixes #174 Fixes #160 Fixes #158
* added vim to tree-sitter's ensured installed list (#110)willsmanic2023-01-011-1/+1
| | | | please refer to https://github.com/nvim-treesitter/nvim-treesitter/issues/3092
* Prevent multiple language servers from being spawned after every file save ↵amalgame212022-12-281-1/+1
| | | | | | | | | | | | of init.lua (#96) * Prevent multiple language servers from being spawned Prevent multiple language servers from being spawned after every save of init.lua, which eventually leads to high RAM usage and system freeze. * Supress error messages add `silent!` in case of error message when nvim-lspconfig is not installed
* move server config to easy to extend style (#71)TJ DeVries2022-12-201-52/+44
| | | | | | | | | Move servers to new configuration style. I will probably cover this in a new shorter video, or maybe in combination with something else. This should hopefully remove getting so many people making issues about LSPs that they don't want to. I can update documentation if what is happening is not clear.
* remove python indent: closes #78TJ DeVries2022-12-201-2/+2
|
* fix: don't check third party for Lua LSP (#57)Nicolas Gryman2022-12-191-1/+4
| | | | | | | | * fix: don't check third party for Lua LSP Co-authored-by: Sean <44933921+seantwie03@users.noreply.github.com> Co-authored-by: TJ DeVries <devries.timothyj@gmail.com> Co-authored-by: Sean <44933921+seantwie03@users.noreply.github.com>
* Fix error on Windows when space in install path (#64)Debashis Biswas2022-12-191-1/+1
|
* Closes #46TJ DeVries2022-12-171-1/+1
|
* small changes to default mappings (#41)TJ DeVries2022-12-131-3/+3
|
* fixup: add gitignore and styleTJ DeVries2022-12-061-2/+4
|
* enh(treesitter): add help into ensure_installed (#39)Maximiliano Greco2022-12-061-1/+1
| | | | closes https://github.com/nvim-lua/kickstart.nvim/issues/38
* Enable parameter text objects (#36)Carlo Teubner2022-11-251-0/+2
| | | | This seems like a natural addition. In classic Vim, I used to use https://github.com/b4winckler/vim-angry for this.
* Add optional packer plugins hook (#20)Elijah Manor2022-11-211-0/+4
| | | | | | | | * Add optional packer plugins hook * Provide help in README and simplify module * Fix spelling and tweak verbiage about after/plugin