Skip to content

Commit

Permalink
neovim: Fix for ubuntu. idk.
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Jan 29, 2025
1 parent 82cd74a commit f9144d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 66 deletions.
3 changes: 1 addition & 2 deletions roles/neovim/files/lua/plugins/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local techdufus = require_on_exported_call('techdufus.telescope.pickers')
return {
"nvim-telescope/telescope.nvim",
cmd = 'Telescope',
version = false,
tag = '0.1.8',
lazy = true,
dependencies = {
"nvim-lua/plenary.nvim",
Expand Down Expand Up @@ -238,7 +238,6 @@ return {
},
})
},
telescope.load_extension('makefile_targets'),
},
}
-- local M = {}
Expand Down
63 changes: 0 additions & 63 deletions roles/neovim/files/lua/telescope/_extensions/makefile_targets.lua

This file was deleted.

7 changes: 6 additions & 1 deletion roles/neovim/tasks/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@
state: present
become: true

- name: "Neovim | {{ ansible_distribution }} | Install"
- name: "Neovim | {{ ansible_distribution }} | Add APT Repository"
ansible.builtin.apt_repository:
repo: ppa:neovim-ppa/unstable
state: present
mode: "0644"
become: true

- name: "Neovim | {{ ansible_distribution }} | Install"
ansible.builtin.apt:
update_cache: yes
become: true

0 comments on commit f9144d1

Please sign in to comment.