6 lines
66 B
Bash
6 lines
66 B
Bash
#!/bin/bash
|
|
|
|
last_dir=$PWD
|
|
cd ~/.config/nvim
|
|
git pull
|
|
cd $last_dir |