From 08f414ad10bf3101960b4d4dcfce54b1e23ec502 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Thu, 26 Oct 2023 16:41:32 -0400 Subject: [PATCH] feat(nvim): make diagnostics more visible --- common/modules/neovim/default.nix | 1 + hosts/wim/config/ags/.stylelintrc.yml | 2 -- hosts/wim/config/ags/scss/common.scss | 2 +- hosts/wim/config/ags/scss/widgets/corners.scss | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/common/modules/neovim/default.nix b/common/modules/neovim/default.nix index 04e678b4..9b1f3bc1 100644 --- a/common/modules/neovim/default.nix +++ b/common/modules/neovim/default.nix @@ -69,6 +69,7 @@ in # General "colors.enable" = true; "coc.preferences.formatOnType" = true; + "diagnostic.checkCurrentLine" = true; "inlayHint.enable" = false; # Eslint diff --git a/hosts/wim/config/ags/.stylelintrc.yml b/hosts/wim/config/ags/.stylelintrc.yml index 7b8202e6..079949e3 100644 --- a/hosts/wim/config/ags/.stylelintrc.yml +++ b/hosts/wim/config/ags/.stylelintrc.yml @@ -10,5 +10,3 @@ rules: scss/operator-no-unspaced: null scss/no-global-function-names: null scss/dollar-variable-empty-line-before: null - scss/dollar-variable-pattern: ^[a-z]+(_[a-z]+)*$ - scss/at-mixin-pattern: ^[a-z]+(_[a-z]+)*$ diff --git a/hosts/wim/config/ags/scss/common.scss b/hosts/wim/config/ags/scss/common.scss index e9ab974d..af55b13d 100644 --- a/hosts/wim/config/ags/scss/common.scss +++ b/hosts/wim/config/ags/scss/common.scss @@ -1,5 +1,5 @@ $darkbg: #0b0d16; -$bg: rgba(40, 42, 54, 0.8); //rgba(69, 71, 90, 0.3); #0d0f18; +$bg: rgba(40, 42, 54, 0.8); // rgba(69, 71, 90, 0.3); #0d0f18; $bgfull: rgb(40, 42, 54); $contrastbg: rgba(189, 147, 249, 0.8); $bgSecondary: rgba(#382c4a, 0.8); diff --git a/hosts/wim/config/ags/scss/widgets/corners.scss b/hosts/wim/config/ags/scss/widgets/corners.scss index 87b6298e..00a890aa 100644 --- a/hosts/wim/config/ags/scss/widgets/corners.scss +++ b/hosts/wim/config/ags/scss/widgets/corners.scss @@ -1,5 +1,5 @@ .corner { background-color: black; - border-radius: 18px; //Hard code because Hyprland rounding is in px + border-radius: 18px; // Hard code because Hyprland rounding is in px border-width: 0.068rem; }