CHANGE neovim integration to neovim.nix module
ADD Nextcloud desktop config
This commit is contained in:
parent
668876dbb2
commit
823553a440
|
@ -33,8 +33,8 @@
|
|||
shellAliases = {
|
||||
ll = "ls -l";
|
||||
ls = "lsd";
|
||||
vi = "nvim";
|
||||
vim = "nvim";
|
||||
#vi = "nvim";
|
||||
#vim = "nvim";
|
||||
cat = "bat";
|
||||
sysrs = "sudo nixos-rebuild switch";
|
||||
sysup = "sudo nixos-rebuild switch --upgrade";
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
./bat.nix
|
||||
./kdeconnect.nix
|
||||
# ./redshift.nix
|
||||
# ../../../modules/neovim.nix
|
||||
../../../modules/neovim.nix
|
||||
../../../modules/rust.nix
|
||||
../../../modules/tmux.nix
|
||||
];
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
exa
|
||||
bat
|
||||
vimPlugins.vim-markdown-composer
|
||||
neovim
|
||||
python3
|
||||
mtr
|
||||
powertop
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ config, pkgs, ...}:
|
||||
{
|
||||
environment.variables.EDITOR = "nvim";
|
||||
#environment.variables.EDITOR = "nvim";
|
||||
environment.systemPackages = with pkgs; [
|
||||
gitAndTools.gitFull
|
||||
unzip
|
||||
|
@ -8,7 +8,7 @@
|
|||
tmux
|
||||
lshw
|
||||
bc
|
||||
neovim
|
||||
#neovim
|
||||
ncdu
|
||||
nixos-option
|
||||
bat
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
let
|
||||
# […]
|
||||
nix-nvim = builtins.fetchGit {
|
||||
# url = "https://git.atlanticaweb.fr/alexandre/nix-nvim.git";
|
||||
# ref = "main";
|
||||
# rev = "fc0cf4d36b3872f80a931ed05993f2d5755b26da";
|
||||
url = "https://framagit.org/vegaelle/nix-nvim.git";
|
||||
ref = "main";
|
||||
{ pkgs, ... }: {
|
||||
programs.neovim = {
|
||||
enable = true ;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
plugins = with pkgs.vimPlugins;[
|
||||
nvim-lspconfig
|
||||
nvim-treesitter.withAllGrammars
|
||||
plenary-nvim
|
||||
gruvbox-material
|
||||
mini-nvim
|
||||
];
|
||||
};
|
||||
in
|
||||
{
|
||||
imports = [ (import "${nix-nvim}") ];
|
||||
}
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
programs.fish.shellAliases = {
|
||||
ll = "ls -l";
|
||||
ls = "lsd";
|
||||
vi = "nvim";
|
||||
vim = "nvim";
|
||||
# vi = "nvim";
|
||||
# vim = "nvim";
|
||||
};
|
||||
security.sudo = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in New Issue