This commit is contained in:
Henrik Bakken
2022-06-14 00:38:26 +02:00
parent 97926b143c
commit dc4d6d706a
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ exec_always --no-startup-id fix_xcursor
# HB STARTUP ADDITIONS # HB STARTUP ADDITIONS
exec --no-startup-id setxkbmap -layout no -model pc105 -variant nodeadkeys -option caps:escape exec --no-startup-id setxkbmap -layout no -model pc105 -variant nodeadkeys -option caps:escape
exec --no-startup-id redshift-gtk -l 59.91:10.75 exec --no-startup-id redshift-gtk -l 59.91:10.75
# exec --no-startup-id dropbox start & exec --no-startup-id dropbox start &
# exec --no-startup-id nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=60 # exec --no-startup-id nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=60
exec --no-startup-id xrandr \ exec --no-startup-id xrandr \
--output DP-4 --auto --primary --gamma 0.9:0.9:0.9 \ --output DP-4 --auto --primary --gamma 0.9:0.9:0.9 \
+1 -1
View File
@@ -42,7 +42,7 @@ exec_always --no-startup-id fix_xcursor
# HB STARTUP ADDITIONS # HB STARTUP ADDITIONS
exec --no-startup-id setxkbmap -layout no -model pc105 -variant nodeadkeys -option caps:escape exec --no-startup-id setxkbmap -layout no -model pc105 -variant nodeadkeys -option caps:escape
exec --no-startup-id redshift-gtk -l 59.91:10.75 exec --no-startup-id redshift-gtk -l 59.91:10.75
# exec --no-startup-id dropbox start & exec --no-startup-id dropbox start &
# exec --no-startup-id nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=60 # exec --no-startup-id nvidia-settings -a GPUFanControlState=1 -a GPUTargetFanSpeed=60
exec --no-startup-id xrandr --output DP-0 --mode 5120x1440 --primary --gamma 0.9:0.9:0.9 exec --no-startup-id xrandr --output DP-0 --mode 5120x1440 --primary --gamma 0.9:0.9:0.9
+4 -2
View File
@@ -293,6 +293,8 @@ require("packer").startup {
-- theme dark only -- theme dark only
use {"arcticicestudio/nord-vim"} use {"arcticicestudio/nord-vim"}
use {"tomasr/molokai"} use {"tomasr/molokai"}
use {"kdheepak/monochrome.nvim"}
use {"kcsongor/vim-monochrome-light"}
use {"jnurmine/Zenburn"} use {"jnurmine/Zenburn"}
use {"nanotech/jellybeans.vim"} use {"nanotech/jellybeans.vim"}
@@ -455,7 +457,7 @@ require("packer").startup {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
requires = { requires = {
"nvim-lua/popup.nvim", "nvim-lua/plenary.nvim", "nvim-lua/popup.nvim", "nvim-lua/plenary.nvim",
"nvim-telescope/telescope-rg.nvim" "nvim-telescope/telescope-live-grep-args.nvim"
}, },
config = function() config = function()
-- TODO grep with regex -- TODO grep with regex
@@ -465,7 +467,7 @@ require("packer").startup {
map("n", "<M-F>", "<cmd>Telescope find_files<cr>", opts) map("n", "<M-F>", "<cmd>Telescope find_files<cr>", opts)
map("n", "<M-f>", "<cmd>Telescope git_files<cr>", opts) map("n", "<M-f>", "<cmd>Telescope git_files<cr>", opts)
map("n", "<M-w>", map("n", "<M-w>",
":lua require('telescope').extensions.live_grep_raw.live_grep_raw()<cr>", ":lua require('telescope').extensions.live_grep_args.live_grep_args()<cr>",
opts) opts)
map("n", "<M-b>", "<cmd>Telescope buffers<cr>", opts) map("n", "<M-b>", "<cmd>Telescope buffers<cr>", opts)
map("n", "<M-y>", "<cmd>Telescope filetypes<cr>", opts) map("n", "<M-y>", "<cmd>Telescope filetypes<cr>", opts)