fixed some nvim errors, added env vars and did some small changes to autoexec, disabled automatic profiles for hyprsunset
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
max-gamma = 150
|
||||
|
||||
profile {
|
||||
time = 7:30
|
||||
identity = true
|
||||
gamma = 1
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 18:00
|
||||
temperature = 5000
|
||||
gamma = 0.90
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 19:00
|
||||
temperature = 4500
|
||||
gamma = 0.90
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 20:00
|
||||
temperature = 4000
|
||||
gamma = 0.90
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 21:00
|
||||
temperature = 3500
|
||||
gamma = 0.80
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 22:00
|
||||
temperature = 3000
|
||||
gamma = 0.80
|
||||
}
|
||||
|
||||
profile {
|
||||
time = 23:00
|
||||
temperature = 2500
|
||||
gamma = 0.80
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
vim.opt_local.spell = true
|
||||
vim.opt_local.spelllang = { "en_us", "de_de", "fr_fr" }
|
||||
vim.opt_local.spelllang = { "en_gb", "de_de", "fr_fr" }
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.linebreak = true
|
||||
vim.opt_local.conceallevel = 2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
-- Spell-check (tweak languages to your needs)
|
||||
vim.opt_local.spell = true
|
||||
vim.opt_local.spelllang = { "en_us", "de_de" }
|
||||
vim.opt_local.spelllang = { "en_gb", "de_de", "fr_fr" }
|
||||
|
||||
-- Niceties for prose/math
|
||||
vim.opt_local.wrap = true
|
||||
|
||||
15
.config/nvim/lua/plugins/luasnip.lua
Normal file
15
.config/nvim/lua/plugins/luasnip.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
return {
|
||||
"L3MON4D3/LuaSnip",
|
||||
version = "v2.*",
|
||||
build = "make install_jsregexp",
|
||||
event = "InsertEnter",
|
||||
dependencies = {
|
||||
"rafamadriz/friendly-snippets",
|
||||
},
|
||||
config = function()
|
||||
local ls = require "luasnip"
|
||||
|
||||
-- optional, but nice:
|
||||
require("luasnip.loaders.from_vscode").lazy_load()
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user