Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
neovim-config
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
Container 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
Eduardo Trujillo
neovim-config
Compare revisions
c5923b1554a0eb6e3ca36aae8b79d6a471284179 to 6b454dc44fc627abd2b633599e7767471b25711a
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
etcinit/neovim-config
Select target project
No results found
6b454dc44fc627abd2b633599e7767471b25711a
Select Git revision
Swap
Target
etcinit/neovim-config
Select target project
etcinit/neovim-config
1 result
c5923b1554a0eb6e3ca36aae8b79d6a471284179
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fix: Use correct server name for nil LSP
· 95bd47a2
Eduardo Trujillo
authored
6 months ago
95bd47a2
chore: Update flake inputs
· 6b454dc4
Eduardo Trujillo
authored
6 months ago
6b454dc4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
flake.lock
+8
-8
8 additions, 8 deletions
flake.lock
flake.nix
+2
-2
2 additions, 2 deletions
flake.nix
home-manager/plugins/lspconfig/config.lua
+1
-1
1 addition, 1 deletion
home-manager/plugins/lspconfig/config.lua
with
11 additions
and
11 deletions
flake.lock
View file @
6b454dc4
...
...
@@ -25,32 +25,32 @@
]
},
"locked": {
"lastModified": 17
05273357
,
"narHash": "sha256-
JAlkxgJbWh7+auiT0rJL3IUXXtkULRqygfxQA6mvLgc
=",
"lastModified": 17
25703823
,
"narHash": "sha256-
tDgM4d8mLK0Hd6YMB2w1BqMto1XBXADOzPEaLl10VI4
=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "
924d91e1e4c802fd8e60279a022dbae5acb36f2d
",
"rev": "
208df2e558b73b6a1f0faec98493cb59a25f62ba
",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "release-2
3.11
",
"ref": "release-2
4.05
",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 17
0518365
2,
"narHash": "sha256-
rnfkyUH0x72oHfiSDhuCHDHg3gFgF+lF8zkkg5Zihs
w=",
"lastModified": 17
2632098
2,
"narHash": "sha256-
RuVXUwcYwaUeks6h3OLrEmg14z9aFXdWppTWPMTwdQ
w=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "
428544ae95eec077c7f823b422afae5f174de
e4
b
",
"rev": "
8f7492cce28977fbf8bd12c72af08b1f6c7c3
e4
9
",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-2
3.11
",
"ref": "nixos-2
4.05
",
"type": "indirect"
}
},
...
...
This diff is collapsed.
Click to expand it.
flake.nix
View file @
6b454dc4
{
inputs
=
{
nixpkgs
.
url
=
"nixpkgs/nixos-2
3.11
"
;
nixpkgs
.
url
=
"nixpkgs/nixos-2
4.05
"
;
flake-utils
.
url
=
"github:numtide/flake-utils"
;
home-manager
=
{
url
=
"github:nix-community/home-manager/release-2
3.11
"
;
url
=
"github:nix-community/home-manager/release-2
4.05
"
;
inputs
.
nixpkgs
.
follows
=
"nixpkgs"
;
};
};
...
...
This diff is collapsed.
Click to expand it.
home-manager/plugins/lspconfig/config.lua
View file @
6b454dc4
...
...
@@ -44,7 +44,7 @@ local setup_lspconfig = function()
local
servers
=
{
rust_analyzer
=
{},
hls
=
{},
[
'
nil
'
]
=
{
nil
_ls
=
{
settings
=
{
formatting
=
{
command
=
{
"nixfmt"
},
...
...
This diff is collapsed.
Click to expand it.