Replace vim with neovim
This commit is contained in:
parent
eae72a2a07
commit
63cf13d603
3 changed files with 8 additions and 3 deletions
|
@ -1,7 +1,12 @@
|
|||
{ config, pkgs, ... }: {
|
||||
# https://nixos.wiki/wiki/Vim
|
||||
programs.vim = {
|
||||
programs.vneoim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
vim-airline
|
||||
YouCompleteMe
|
|
@ -3,7 +3,7 @@
|
|||
imports = [
|
||||
./dconf.nix
|
||||
../../common/dotfiles/git.nix
|
||||
../../common/dotfiles/vim.nix
|
||||
../../common/dotfiles/neovim.nix
|
||||
../../common/dotfiles/bash.nix
|
||||
];
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
home.stateVersion = "23.05";
|
||||
imports = [
|
||||
../../common/dotfiles/git.nix
|
||||
../../common/dotfiles/vim.nix
|
||||
../../common/dotfiles/neovim.nix
|
||||
../../common/dotfiles/bash.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue