diff --git a/homeassistant/configuration.yaml b/homeassistant/configuration.yaml new file mode 100644 index 0000000..a9b3777 --- /dev/null +++ b/homeassistant/configuration.yaml @@ -0,0 +1,26 @@ + +# Loads default set of integrations. Do not remove. +default_config: + +# Load frontend themes from the themes folder +frontend: + themes: !include_dir_merge_named themes + +automation: !include automations.yaml +script: !include scripts.yaml +scene: !include scenes.yaml + +sensor: + - platform: nordpool + region: "Oslo" + currency: "NOK" + VAT: True + precision: 3 + low_price_cutoff: 0.95 + price_in_cents: false + price_type: kWh + + # Template to specify additional cost to be added to the tariff. + # The template price is in EUR, DKK, NOK or SEK (not in cents). + # For example: "{{ current_price * 0.19 + 0.023 | float}}" + additional_costs: "{{0.0|float}}" diff --git a/nvim/init.lua b/nvim/init.lua index 83e596e..68b05a5 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -564,7 +564,6 @@ require("lazy").setup({ jumpBot = "]", }, }, - close_fold_kinds = { "imports", "comment" }, fold_virt_text_handler = closecounthandler, }) end,