Compare commits

12 Commits

Author SHA1 Message Date
e3c064d3a9 flake: update 2024-06-19 10:12:55 +02:00
8754d5b79d flake: update 2024-05-31 11:44:03 +02:00
ba6b926cc4 flake: update 2024-04-12 17:28:34 +02:00
201161972e packages: re-enable nixd 2024-04-12 17:26:46 +02:00
2b10f5cb32 nvim-lsp: remove implicit pkgs definition 2024-03-16 22:09:08 +01:00
c055bd2a2f flake: add bundled package, remove nixd over unresolved CVE 2024-03-16 19:06:45 +01:00
f042e08ecd Revert "flake: add arm64-linux target"
This reverts commit 13bed01615.
2024-03-16 17:12:06 +01:00
13bed01615 flake: add arm64-linux target 2024-03-16 15:32:53 +01:00
3f9559992a lua: format 2024-03-16 15:22:08 +01:00
9332c56c01 nvim-lsp: remove nativeBuildInputs 2024-03-16 15:09:45 +01:00
a9bc0c8a7a flake: update 2024-03-16 14:20:14 +01:00
5bba266c6e flake: add symlink for needed packages in overlay 2024-03-16 14:13:23 +01:00
4 changed files with 35 additions and 50 deletions

6
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1698266953,
"narHash": "sha256-jf72t7pC8+8h8fUslUYbWTX5rKsRwOzRMX8jJsGqDXA=",
"lastModified": 1718606988,
"narHash": "sha256-pmjP5ePc1jz+Okona3HxD7AYT0wbrCwm9bXAlj08nDM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "75a52265bda7fd25e06e3a67dee3f0354e73243c",
"rev": "38d3352a65ac9d621b0cd3074d3bef27199ff78f",
"type": "github"
},
"original": {

View File

@@ -12,31 +12,35 @@
supportedSystems = ["x86_64-linux" "aarch64-linux"];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;});
additionalDeps = pkgs: [
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
];
in {
packages = forAllSystems (system: let
pkgs = nixpkgsFor.${system};
neovim = import ./nvim-lsp.nix {inherit pkgs;};
in {
nvim = import ./nvim-lsp.nix {inherit pkgs;};
nvim = pkgs.symlinkJoin {
name = "nvim";
paths = with pkgs;
[
alejandra
ccls
gopls
luaformatter
nixd
pyright
rust-analyzer
sumneko-lua-language-server
svls
texlab
tree-sitter
verible
zls
]
++ [neovim];
};
});
devShells = forAllSystems (system: let
pkgs = nixpkgsFor.${system};
vim = self.packages.${system};
in {
default = pkgs.mkShell {
nativeBuildInputs = [
@@ -44,7 +48,7 @@
pkgs.ccls
pkgs.gopls
pkgs.luaformatter
pkgs.nixd
pkgs.nixd
pkgs.pyright
pkgs.rust-analyzer
pkgs.sumneko-lua-language-server
@@ -53,7 +57,7 @@
pkgs.tree-sitter
pkgs.verible
pkgs.zls
vim
(import ./nvim-lsp.nix {inherit pkgs;})
];
};
});
@@ -62,11 +66,9 @@
pkgs = nixpkgsFor.${system};
in {
overlay = final: prev: {
inherit (self.packages.${system}) nvim;
inherit additionalDeps;
nvim = self.packages.${system}.nvim;
};
});
defaultPackage = forAllSystems (system: self.packages.${system}.nvim);
};
}

View File

@@ -1,4 +1,4 @@
{pkgs ? import <nixpkgs> {}}: let
{pkgs}: let
neovim = pkgs.neovim.override {
configure = {
customRC = ''
@@ -45,21 +45,6 @@
vim-snippets
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
];
};
};

View File

@@ -32,11 +32,9 @@ require 'nvim-treesitter.configs'.setup {
indent = { enable = false, disable = {} },
rainbow = {
enable = true,
extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean
max_file_lines = 1000, -- Do not enable for files with more than 1000 lines, int
colors = {
'#ff0000', '#ffa500', '#ffff00', '#008000', '#0051a0', '#8003f2'
} -- table of hex strings
extended_mode = true,
max_file_lines = 1000,
colors = { '#ff0000', '#0051a0' ,'#ffa500', '#ffff00', '#008000', '#8003f2' }
}
}
@@ -107,18 +105,18 @@ vim.api.nvim_create_autocmd('LspAttach', {
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
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
-- 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
-- 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
-- map buffer local keybindings when the language server attaches