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
762202c48c08af95314dc1474e4cb482c8af242f to 0a91810786435567c03302325a36148438c4ebec
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
0a91810786435567c03302325a36148438c4ebec
Select Git revision
Branches
master
v1_config_bak
v2
Swap
Target
iliya.saroukha/nvim
Select target project
iliya.saroukha/nvim
1 result
762202c48c08af95314dc1474e4cb482c8af242f
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 (3)
updating trouble.nvim
· ffc9b628
iliya.saroukha
authored
7 months ago
ffc9b628
added remap for getting cwd of file
· ed6d575d
iliya.saroukha
authored
7 months ago
ed6d575d
changed colour of highlighted text when doing incremental search
· 0a918107
iliya.saroukha
authored
7 months ago
0a918107
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
after/plugin/colors.lua
+1
-1
1 addition, 1 deletion
after/plugin/colors.lua
lua/config/remap.lua
+3
-0
3 additions, 0 deletions
lua/config/remap.lua
lua/plugins.lua
+40
-2
40 additions, 2 deletions
lua/plugins.lua
with
44 additions
and
3 deletions
after/plugin/colors.lua
View file @
0a918107
...
...
@@ -58,7 +58,7 @@ require('rose-pine').setup({
-- By default each group adds to the existing config.
-- If you only want to set what is written in this config exactly,
-- you can set the inherit option:
IncSearch
=
{
bg
=
'
ros
e'
,
inherit
=
false
},
IncSearch
=
{
bg
=
'
pin
e'
,
inherit
=
false
},
},
before_highlight
=
function
(
group
,
highlight
,
palette
)
...
...
This diff is collapsed.
Click to expand it.
lua/config/remap.lua
View file @
0a918107
...
...
@@ -10,6 +10,9 @@ vim.keymap.set("n", "<C-u>", "<C-u>zz")
vim
.
keymap
.
set
(
"n"
,
"n"
,
"nzzzv"
)
vim
.
keymap
.
set
(
"n"
,
"N"
,
"Nzzzv"
)
-- Where Am I?
vim
.
keymap
.
set
(
"n"
,
"<leader>w"
,
"<cmd>echo @%<CR>"
)
-- alternate file --
vim
.
keymap
.
set
(
"n"
,
"<M-a>"
,
"<cmd>silent :b#<CR>"
)
...
...
This diff is collapsed.
Click to expand it.
lua/plugins.lua
View file @
0a918107
...
...
@@ -144,12 +144,50 @@ return {
-- version = "*"
},
{
"folke/trouble.nvim"
,
dependencies
=
{
"nvim-tree/nvim-web-devicons"
},
opts
=
{},
-- for default options, refer to the configuration section for custom setup.
cmd
=
"Trouble"
,
keys
=
{
{
"<leader>t"
,
"<cmd>Trouble diagnostics toggle<cr>"
,
desc
=
"Diagnostics (Trouble)"
,
},
{
"<leader>q"
,
"<cmd>Trouble todo toggle<cr>"
,
desc
=
"Todo (Trouble)"
,
},
{
"<leader>xX"
,
"<cmd>Trouble diagnostics toggle filter.buf=0<cr>"
,
desc
=
"Buffer Diagnostics (Trouble)"
,
},
{
"<leader>cs"
,
"<cmd>Trouble symbols toggle focus=false<cr>"
,
desc
=
"Symbols (Trouble)"
,
},
{
"<leader>cl"
,
"<cmd>Trouble lsp toggle focus=false win.position=right<cr>"
,
desc
=
"LSP Definitions / references / ... (Trouble)"
,
},
{
"<leader>xL"
,
"<cmd>Trouble loclist toggle<cr>"
,
desc
=
"Location List (Trouble)"
,
},
{
"<leader>xQ"
,
"<cmd>Trouble qflist toggle<cr>"
,
desc
=
"Quickfix List (Trouble)"
,
},
},
},
'NvChad/nvim-colorizer.lua'
,
...
...
This diff is collapsed.
Click to expand it.