Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
siph committed Apr 9, 2024
1 parent ba7b7a5 commit 7f3813d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/comments/comment-nvim.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
plugins.comment-nvim = {
plugins.comment = {
enable = true;
};
}
2 changes: 1 addition & 1 deletion config/core/core.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
register = "unnamedplus";
};

options = {
opts = {
autoindent = true;
expandtab = true;
hidden = true;
Expand Down
2 changes: 1 addition & 1 deletion config/telescope/telescope.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
plugins.telescope = {
enable = true;
defaults = {
settings.defaults = {
file_ignore_patterns = [
"^.git/"
"^output/"
Expand Down
2 changes: 1 addition & 1 deletion config/visuals/gitsigns.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
plugins.gitsigns = {
enable = true;
currentLineBlame = false;
settings.current_line_blame = false;
};
keymaps = [
{
Expand Down
8 changes: 5 additions & 3 deletions config/visuals/indent-blankline.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
plugins.indent-blankline = {
enable = true;
scope.enabled = false;
indent = {
char = "";
settings = {
scope.enabled = false;
indent = {
char = "";
};
};
};
}

0 comments on commit 7f3813d

Please sign in to comment.