fix neovim
This commit is contained in:
parent
97fda3cd19
commit
c03dbc65bc
2 changed files with 7 additions and 1 deletions
|
@ -14,6 +14,7 @@ My current setup is [Regolith OS](https://regolith-desktop.com/) which is basica
|
|||
- thunderbird config
|
||||
- some kind of tag setup with: bootstrap, update, etc.
|
||||
- i3 app shortcuts
|
||||
- install fzf from repositories instead of git
|
||||
|
||||
Would like Ansible Vault to check in keypair for syncthing.
|
||||
However, then I would need a password to unlock the vault.
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
- name: Install Neovim PPA
|
||||
become: true
|
||||
apt_repository:
|
||||
repo: "deb [signed-by=/etc/apt/keyrings/neovim.gpg] https://ppa.launchpadcontent.net/neovim-ppa/stable/ubuntu {{ ansible_distribution_release }} main"
|
||||
repo: "deb [signed-by=/etc/apt/keyrings/neovim.gpg] https://ppa.launchpadcontent.net/neovim-ppa/unstable/ubuntu {{ ansible_distribution_release }} main"
|
||||
register: apt_repository
|
||||
- name: Update APT cache
|
||||
become: true
|
||||
|
@ -48,6 +48,11 @@
|
|||
pip:
|
||||
name:
|
||||
- "python-lsp-server[all]"
|
||||
- name: Clone packer repository
|
||||
git:
|
||||
repo: https://github.com/wbthomason/packer.nvim
|
||||
depth: 1
|
||||
dest: ~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||
- name: Install terraform-ls
|
||||
become: true
|
||||
apt:
|
||||
|
|
Reference in a new issue