Compare commits
21 Commits
add_overla
...
master
Author | SHA1 | Date | |
---|---|---|---|
8245a48cc7 | |||
3d82bad6ee | |||
6e26ec33fa | |||
b9c3cd2e1a | |||
a09a34997c | |||
127047caeb | |||
60acbede4d | |||
9f36693f90 | |||
8fdf9bd08c | |||
e3c064d3a9 | |||
8754d5b79d | |||
ba6b926cc4 | |||
201161972e | |||
2b10f5cb32 | |||
c055bd2a2f | |||
f042e08ecd | |||
13bed01615 | |||
3f9559992a | |||
9332c56c01 | |||
a9bc0c8a7a | |||
5bba266c6e |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,4 @@
|
|||||||
result
|
result
|
||||||
|
.ccls-cache/
|
||||||
|
hello.c
|
||||||
|
compile_commands.json
|
||||||
|
15
flake.lock
generated
15
flake.lock
generated
@ -2,17 +2,18 @@
|
|||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1698266953,
|
"lastModified": 1733120037,
|
||||||
"narHash": "sha256-jf72t7pC8+8h8fUslUYbWTX5rKsRwOzRMX8jJsGqDXA=",
|
"narHash": "sha256-En+gSoVJ3iQKPDU1FHrR6zIxSLXKjzKY+pnh9tt+Yts=",
|
||||||
"owner": "NixOS",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "75a52265bda7fd25e06e3a67dee3f0354e73243c",
|
"rev": "f9f0d5c5380be0a599b1fb54641fa99af8281539",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"id": "nixpkgs",
|
"owner": "nixos",
|
||||||
"ref": "nixpkgs-unstable",
|
"ref": "nixos-24.11",
|
||||||
"type": "indirect"
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
|
36
flake.nix
36
flake.nix
@ -2,7 +2,7 @@
|
|||||||
description = "A very basic flake";
|
description = "A very basic flake";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
@ -12,12 +12,34 @@
|
|||||||
supportedSystems = ["x86_64-linux" "aarch64-linux"];
|
supportedSystems = ["x86_64-linux" "aarch64-linux"];
|
||||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||||
nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;});
|
nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;});
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux.pkgs;
|
|
||||||
in {
|
in {
|
||||||
packages = forAllSystems (system: let
|
packages = forAllSystems (system: let
|
||||||
pkgs = nixpkgsFor.${system};
|
pkgs = nixpkgsFor.${system};
|
||||||
|
neovim = import ./nvim-lsp.nix {inherit pkgs;};
|
||||||
in {
|
in {
|
||||||
nvim = import ./nvim-lsp.nix {inherit pkgs;};
|
nvim = pkgs.symlinkJoin {
|
||||||
|
name = "nvim";
|
||||||
|
paths = with pkgs;
|
||||||
|
[
|
||||||
|
alejandra
|
||||||
|
ccls
|
||||||
|
gopls
|
||||||
|
luaformatter
|
||||||
|
nixd
|
||||||
|
nixfmt-rfc-style
|
||||||
|
pyright
|
||||||
|
rust-analyzer
|
||||||
|
sumneko-lua-language-server
|
||||||
|
svls
|
||||||
|
texlab
|
||||||
|
tree-sitter
|
||||||
|
typst-lsp
|
||||||
|
verible
|
||||||
|
yaml-language-server
|
||||||
|
zls
|
||||||
|
]
|
||||||
|
++ [neovim];
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
devShells = forAllSystems (system: let
|
devShells = forAllSystems (system: let
|
||||||
@ -30,6 +52,7 @@
|
|||||||
pkgs.gopls
|
pkgs.gopls
|
||||||
pkgs.luaformatter
|
pkgs.luaformatter
|
||||||
pkgs.nixd
|
pkgs.nixd
|
||||||
|
pkgs.nixfmt-rfc-style
|
||||||
pkgs.pyright
|
pkgs.pyright
|
||||||
pkgs.rust-analyzer
|
pkgs.rust-analyzer
|
||||||
pkgs.sumneko-lua-language-server
|
pkgs.sumneko-lua-language-server
|
||||||
@ -43,6 +66,13 @@
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
overlays = forAllSystems (system: let
|
||||||
|
pkgs = nixpkgsFor.${system};
|
||||||
|
in {
|
||||||
|
overlay = final: prev: {
|
||||||
|
nvim = self.packages.${system}.nvim;
|
||||||
|
};
|
||||||
|
});
|
||||||
defaultPackage = forAllSystems (system: self.packages.${system}.nvim);
|
defaultPackage = forAllSystems (system: self.packages.${system}.nvim);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
17
nvim-lsp.nix
17
nvim-lsp.nix
@ -1,4 +1,4 @@
|
|||||||
{pkgs ? import <nixpkgs> {}}: let
|
{pkgs}: let
|
||||||
neovim = pkgs.neovim.override {
|
neovim = pkgs.neovim.override {
|
||||||
configure = {
|
configure = {
|
||||||
customRC = ''
|
customRC = ''
|
||||||
@ -45,21 +45,6 @@
|
|||||||
vim-snippets
|
vim-snippets
|
||||||
zig-vim
|
zig-vim
|
||||||
];
|
];
|
||||||
nativeBuildInputs = [
|
|
||||||
pkgs.alejandra
|
|
||||||
pkgs.ccls
|
|
||||||
pkgs.gopls
|
|
||||||
pkgs.luaformatter
|
|
||||||
pkgs.nixd
|
|
||||||
pkgs.pyright
|
|
||||||
pkgs.rust-analyzer
|
|
||||||
pkgs.sumneko-lua-language-server
|
|
||||||
pkgs.svls
|
|
||||||
pkgs.texlab
|
|
||||||
pkgs.tree-sitter
|
|
||||||
pkgs.verible
|
|
||||||
pkgs.zls
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
20
vimrc.lua
20
vimrc.lua
@ -32,11 +32,9 @@ require 'nvim-treesitter.configs'.setup {
|
|||||||
indent = { enable = false, disable = {} },
|
indent = { enable = false, disable = {} },
|
||||||
rainbow = {
|
rainbow = {
|
||||||
enable = true,
|
enable = true,
|
||||||
extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean
|
extended_mode = true,
|
||||||
max_file_lines = 1000, -- Do not enable for files with more than 1000 lines, int
|
max_file_lines = 1000,
|
||||||
colors = {
|
colors = { '#ff0000', '#0051a0' ,'#ffa500', '#ffff00', '#008000', '#8003f2' }
|
||||||
'#ff0000', '#ffa500', '#ffff00', '#008000', '#0051a0', '#8003f2'
|
|
||||||
} -- table of hex strings
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,18 +105,18 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.diagnostic.config({ virtual_text = false}) -- Turn off inline diagnostics
|
vim.diagnostic.config({ virtual_text = false }) -- Turn off inline diagnostics
|
||||||
|
|
||||||
-- Show all diagnostics on current line in floating window
|
-- Show all diagnostics on current line in floating window
|
||||||
vim.api.nvim_set_keymap( 'n', '<Leader>d', ':lua vim.diagnostic.open_float()<CR>', opts)
|
vim.api.nvim_set_keymap('n', '<Leader>d', ':lua vim.diagnostic.open_float()<CR>', opts)
|
||||||
|
|
||||||
-- Go to next diagnostic (if there are multiple on the same line, only shows
|
-- Go to next diagnostic (if there are multiple on the same line, only shows
|
||||||
-- one at a time in the floating window)
|
-- one at a time in the floating window)
|
||||||
vim.api.nvim_set_keymap( 'n', '<Leader>n', ':lua vim.diagnostic.goto_next()<CR>', opts)
|
vim.api.nvim_set_keymap('n', '<Leader>n', ':lua vim.diagnostic.goto_next()<CR>', opts)
|
||||||
|
|
||||||
-- Go to prev diagnostic (if there are multiple on the same line, only shows
|
-- Go to prev diagnostic (if there are multiple on the same line, only shows
|
||||||
-- one at a time in the floating window)
|
-- one at a time in the floating window)
|
||||||
vim.api.nvim_set_keymap( 'n', '<Leader>p', ':lua vim.diagnostic.goto_prev()<CR>', opts)
|
vim.api.nvim_set_keymap('n', '<Leader>p', ':lua vim.diagnostic.goto_prev()<CR>', opts)
|
||||||
|
|
||||||
-- Use a loop to conveniently call 'setup' on multiple servers and
|
-- Use a loop to conveniently call 'setup' on multiple servers and
|
||||||
-- map buffer local keybindings when the language server attaches
|
-- map buffer local keybindings when the language server attaches
|
||||||
@ -184,7 +182,7 @@ cmp.setup({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
local servers = { 'pyright', 'rust_analyzer', 'ccls', 'nixd', 'texlab', 'zls', 'gopls' }
|
local servers = { 'pyright', 'rust_analyzer', 'ccls', 'nixd', 'texlab', 'zls', 'gopls', 'yamlls', 'typst_lsp' }
|
||||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||||
for _, lsp in pairs(servers) do
|
for _, lsp in pairs(servers) do
|
||||||
require('lspconfig')[lsp].setup {
|
require('lspconfig')[lsp].setup {
|
||||||
@ -219,7 +217,7 @@ require('lspconfig').lua_ls.setup({
|
|||||||
|
|
||||||
require('lspconfig').verible.setup({
|
require('lspconfig').verible.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
root_dir = function() return vim.loop.cwd() end
|
root_dir = function() return vim.fn.getcwd() end
|
||||||
})
|
})
|
||||||
|
|
||||||
if vim.fn.exists('+undofile') ~= 0 then
|
if vim.fn.exists('+undofile') ~= 0 then
|
||||||
|
Loading…
Reference in New Issue
Block a user