add modular bashrc
This commit is contained in:
parent
3391f67080
commit
04aba0d670
16 changed files with 49 additions and 21 deletions
3
roles/neovim/files/neovim.bashrc
Normal file
3
roles/neovim/files/neovim.bashrc
Normal file
|
@ -0,0 +1,3 @@
|
|||
PATH=$PATH:/usr/local
|
||||
alias vi='nvim'
|
||||
alias vim='nvim'
|
|
@ -1,2 +1,3 @@
|
|||
dependencies:
|
||||
- role: common
|
||||
- role: bash
|
||||
|
|
|
@ -64,3 +64,7 @@
|
|||
option: "{{ item }}"
|
||||
value: "nvim.desktop"
|
||||
loop: "{{ default_apps }}"
|
||||
- name: Copy neovim.bashrc
|
||||
copy:
|
||||
src: "{{ role_path }}/files/neovim.bashrc"
|
||||
dest: ~/.bashrc.d/neovim.bashrc
|
||||
|
|
Reference in a new issue