mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-11 09:21:20 +01:00
15 lines
199 B
Plaintext
15 lines
199 B
Plaintext
|
#!/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
|