Implemented previous non-working version of neovim config
This commit is contained in:
parent
ef23ab8141
commit
e58de4ae96
@ -31,7 +31,6 @@
|
|||||||
|
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim
|
|
||||||
git
|
git
|
||||||
killall
|
killall
|
||||||
];
|
];
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./shared.nix
|
./shared.nix
|
||||||
./hacking.nix
|
./hacking.nix
|
||||||
|
./neovim.nix
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./shared.nix
|
./shared.nix
|
||||||
./emacs.nix
|
./neovim.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
11
home/neovim.nix
Normal file
11
home/neovim.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{ inputs, config, pkgs, ... }: {
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
vimAlias = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".config/nvim/init.vim".source = ../dotfiles/.config/nvim/init.vim;
|
||||||
|
".config/nvim/coc-settings.json".source = ../dotfiles/.config/nvim/init.vim;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user