Compare commits

...

3 Commits

Author SHA1 Message Date
969a46feb5 Update files/gitconfig 2024-12-19 22:12:29 +00:00
Eric Meehan
259aa304f0 Update files/gitconfig
Changed values to match Gitea.
2024-12-12 02:18:35 +00:00
4dc7f7917e v1.0.0 2024-11-11 15:26:07 -05:00
3 changed files with 30 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
[user]
email = eric@eom.dev
name = eric o meehan
name = Eric Meehan
[init]
defaultBranch = main

8
files/motd Normal file
View File

@@ -0,0 +1,8 @@
.-. .-._.. .-. .-.
./.-'_( ) )/ ) )
(__.' `-' '/ / (
`-'

View File

@@ -3,24 +3,37 @@
- name: Install user environment packages
apt:
name:
- git
- neovim
- tmux
- zplug
- zsh
state: present
- name: Set default shell to zsh
user:
name: eric
shell: /bin/zsh
- name: Copy MOTD
copy:
src: files/motd
dest: /etc/motd
- name: Create local configuration directory
file:
path: /home/eric/.config/nvim
state: directory
- name: Install custom zsh prompt
copy:
src: prompt_eric_setup
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
- name: Copy zsh configuration
copy:
src: zshrc
dest: /home/eric/.zshrc
- name: Install custom zsh prompt
copy:
src: prompt_eric_setup
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
- name: Set default shell to zsh
user:
name: eric
shell: /bin/zsh
- name: Copy tmux configuration
copy:
@@ -32,11 +45,6 @@
src: gitconfig
dest: /home/eric/.gitconfig
- name: Create local configuration directory
file:
path: /home/eric/.config/nvim
state: directory
- name: Copy neovim configuration
copy:
src: init.lua