Skip to content

Commit 3f9712b

Browse files
committed
Fix nvim deprecations
1 parent 7217490 commit 3f9712b

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

common/.wgetrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# WGET settings
22
# https://www.gnu.org/software/wget/manual/html_node/Sample-Wgetrc.html
33

4-
# Use the server-provided last modification date, if available
5-
timestamping = on
6-
74
# Do not go up in the directory structure when downloading recursively
85
no_parent = on
96

nvim/.nvim/lua/plugins.lua

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@ packer.startup({
136136
"nvim-treesitter/nvim-treesitter-refactor",
137137
after = "nvim-treesitter",
138138
})
139-
use({
140-
"windwp/nvim-ts-autotag",
141-
after = "nvim-treesitter",
142-
config = [[require("plugin/autotag")]],
143-
})
144139
-- Comments
145140
use({
146141
"b3nj5m1n/kommentary",

nvim/.nvim/lua/util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function _M.contains(list, x)
3131
end
3232

3333
function _M.get_buf_lsp_clients()
34-
local buf_clients = vim.lsp.buf_get_clients()
34+
local buf_clients = vim.lsp.get_clients()
3535
if next(buf_clients) == nil then
3636
return {}
3737
end

0 commit comments

Comments
 (0)