Skip to content

Instantly share code, notes, and snippets.

@ingenieroariel
Last active February 5, 2019 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ingenieroariel/3e068d7bda9839f18724b956aceaf864 to your computer and use it in GitHub Desktop.
Save ingenieroariel/3e068d7bda9839f18724b956aceaf864 to your computer and use it in GitHub Desktop.
nixpkgs.overlays = [
( self: super:
let
inherit (self.pkgs) vim;
in {
vim = super.vim_configurable.customize {
name = "vim";
vimrcConfig.customRC = ''
syntax enable
set backspace=indent,eol,start
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
'';
}
}
)
];
environment.systemPackages = with pkgs; [
git
wget tmux htop git ripgrep unzip
tcpdump telnet openssh
gnumake gcc libcxx libcxxabi llvm ninja clang
python3 nodejs nodePackages.node2nix go
firefox kmail vscode vlc
blender godot gimp inkscape
libreoffice
minio minio-client
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment