Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nvim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iliya.saroukha
nvim
Compare revisions
6584a988391ffce045788dccf77894ca6bad7147 to 762202c48c08af95314dc1474e4cb482c8af242f
Project 'iliya.saroukha/nvim_config' was moved to 'iliya.saroukha/nvim'. Please update any links and bookmarks that may still have the old path.
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
iliya.saroukha/nvim
Select target project
No results found
762202c48c08af95314dc1474e4cb482c8af242f
Select Git revision
Branches
master
v1_config_bak
v2
Swap
Target
iliya.saroukha/nvim
Select target project
iliya.saroukha/nvim
1 result
6584a988391ffce045788dccf77894ca6bad7147
Select Git revision
Branches
master
v1_config_bak
v2
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fix: make install jsregexp for LuaSnip
· c2f36082
iliya.saroukha
authored
9 months ago
Verified
c2f36082
feat: added todo-comments plugin
· 762202c4
iliya.saroukha
authored
9 months ago
Verified
762202c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lua/plugins.lua
+18
-1
18 additions, 1 deletion
lua/plugins.lua
with
18 additions
and
1 deletion
lua/plugins.lua
View file @
762202c4
...
...
@@ -32,7 +32,14 @@ return {
'hrsh7th/nvim-cmp'
,
dependencies
=
{
-- Snippet Engine & its associated nvim-cmp source
'L3MON4D3/LuaSnip'
,
{
"L3MON4D3/LuaSnip"
,
-- follow latest release.
version
=
"v2.*"
,
-- Replace <CurrentMajor> by the latest released major (first number of latest release)
-- install jsregexp (optional!).
build
=
"make install_jsregexp"
},
'saadparwaiz1/cmp_luasnip'
,
-- Adds LSP completion capabilities
...
...
@@ -262,4 +269,14 @@ return {
},
},
},
{
"folke/todo-comments.nvim"
,
dependencies
=
{
"nvim-lua/plenary.nvim"
},
opts
=
{
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
},
}
This diff is collapsed.
Click to expand it.