Skip to content

Commit 7dba274

Browse files
committed
fix deprecations
1 parent f36c8c7 commit 7dba274

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/tabline/nvim-bufferline.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ in
7878
offsets = {{filetype = "NvimTree", text = "File Explorer", text_align = "left"}},
7979
sort_by = 'extension',
8080
diagnostics = "nvim_lsp",
81-
diagnostics_update_in_insert = true,
81+
vim.diagnostic.config { update_in_insert = true },
8282
diagnostics_indicator = function(count, level, diagnostics_dict, context)
8383
local s = ""
8484
for e, n in pairs(diagnostics_dict) do

modules/tide/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ in
5454
};
5555

5656
config = mkIf cfg.enable {
57-
vim.startPlugins = [ pkgs.neovimPlugins.tide ];
57+
vim.startPlugins = with pkgs.neovimPlugins; [ nvim-nui tide ];
5858

5959
vim.luaConfigRC = ''
6060
require('tide').setup({

0 commit comments

Comments
 (0)