mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
15 lines
199 B
Bash
15 lines
199 B
Bash
#!/bin/sh
|
|
#
|
|
# Vim is the standard text editor.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Vim
|
|
|
|
set -xe
|
|
|
|
pacman -S vim
|
|
|
|
pacman -S neovim
|
|
|
|
# Add the `undo` directory for regular vim
|
|
mkdir -p ~/.vim/undo
|