Skip to content

Commit

Permalink
chore(inputs): update inputs and fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyxels committed Sep 18, 2024
1 parent b4dc81c commit d09a19b
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 40 deletions.
2 changes: 1 addition & 1 deletion config/editor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
enable = true;
};

surround.enable = true;
nvim-surround.enable = true;

comment.enable = true;

Expand Down
2 changes: 1 addition & 1 deletion config/lsp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# vue workaround: see https://github.com/nix-community/nixvim/issues/1937
# additional configuration for volar
# https://github.com/vuejs/language-tools?tab=readme-ov-file#hybrid-mode-configuration-requires-vuelanguage-server-version-200
tsserver = {
ts-ls = {
enable = true;
filetypes = [
"typescript"
Expand Down
34 changes: 18 additions & 16 deletions config/ui.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,24 @@
plugins = {
lualine = {
enable = true;
theme = "gruvbox";
globalstatus = true;
sections = {
lualine_c = [
{
name = "filename";
extraConfig.path = 1;
}
];
lualine_x = [
{
name = {
__raw = ''function() if package.loaded["noice"] and require("noice").api.status.mode.has() then return require("noice").api.status.mode.get() end return "" end'';
};
}
];
settings = {
options = {
theme = "gruvbox";
globalstatus = true;
};
sections = {
lualine_c = [
{
__unkeyed = "filename";
path = 1;
}
];
lualine_x = [
{
__unkeyed.__raw = ''function() if package.loaded["noice"] and require("noice").api.status.mode.has() then return require("noice").api.status.mode.get() end return "" end'';
}
];
};
};
};

Expand Down
44 changes: 22 additions & 22 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d09a19b

Please sign in to comment.