Remove old settings
This commit is contained in:
parent
0d16af9d83
commit
3e4d60091e
3 changed files with 4 additions and 34 deletions
|
|
@ -1,33 +0,0 @@
|
|||
- name: install coc.nvim node packages
|
||||
npm:
|
||||
path: '{{ xdg_data_dir }}/nvim/site/pack/default/start/coc.nvim'
|
||||
state: present
|
||||
global: false
|
||||
|
||||
- name: create default coc.nvim venv directory
|
||||
file:
|
||||
path: '{{ ansible_env.HOME }}/.local/lib/coc'
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
- name: copy coc pyproject.toml
|
||||
template:
|
||||
src: 'pyproject.j2'
|
||||
dest: '{{ ansible_env.HOME }}/.local/lib/coc/pyproject.toml'
|
||||
mode: '0644'
|
||||
force: false
|
||||
|
||||
- name: set default venv python version
|
||||
command: 'poetry env use python3'
|
||||
args:
|
||||
chdir: '{{ ansible_env.HOME }}/.local/lib/coc'
|
||||
environment:
|
||||
PATH: '{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}'
|
||||
when: ansible_distribution == "Debian"
|
||||
|
||||
- name: install default coc.nvim python packages
|
||||
command: 'poetry install'
|
||||
args:
|
||||
chdir: '{{ ansible_env.HOME }}/.local/lib/coc'
|
||||
environment:
|
||||
PATH: '{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}'
|
||||
|
|
@ -13,7 +13,6 @@
|
|||
loop:
|
||||
- '{{ xdg_config_dir }}/nvim'
|
||||
- '{{ xdg_data_dir }}/nvim/site'
|
||||
- '{{ xdg_config_dir }}/kitty'
|
||||
|
||||
- name: setup dotfiles
|
||||
file:
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
update: true
|
||||
loop: '{{ vim_plugins }}'
|
||||
|
||||
- name: install pynvim package
|
||||
pip:
|
||||
name: pynvim
|
||||
|
||||
- name: copy konsole configuration files
|
||||
template:
|
||||
src: '{{ item.src }}'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue