Add colorizer

This commit is contained in:
Kristofers Solo 2022-07-28 02:38:30 +03:00
parent 516468f2a3
commit a05c13009d
5 changed files with 16 additions and 7 deletions

View File

@ -871,3 +871,6 @@ key_bindings:
# Print all received window events.
#print_events: false
import:
- ~/.config/alacritty/dracula.yml

View File

@ -573,17 +573,21 @@ awful.rules.rules = {
}, properties = { titlebars_enabled = false }
},
{
rule_any = {
class = { "tuxedo-control-center", "corectrl" }
}, properties = { screen = 1, tag = "7" }
},
{
rule_any = {
class = { "Thunderbird", "discord", "ripcord", "TelegramDesktop" }
}, properties = { screen = 1, tag = "8" }
},
{
rule_any = {
class = { "spotify", "Spotify", "corectrl" },
name = { "Spotify", "CoreCtrl" }
}, properties = { screen = 1, tag = "9" }
},
{
rule_any = {
class = { "spotify", "Spotify" },
}, properties = { screen = 1, tag = "9" }
},
-- Set Firefox to always map on the tag named "2" on screen 1.
-- { rule = { class = "Firefox" },

View File

@ -54,7 +54,7 @@ update_ms = 1000
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "memory"
proc_sorting = "cpu direct"
#* Reverse sorting order, True or False.
proc_reversed = False

View File

@ -128,6 +128,7 @@ nnoremap <leader>fh <cmd>Telescope help_tags<cr>
lua << END
require('gitsigns').setup()
require('Comment').setup()
require 'colorizer'.setup()
require("nvim-lsp-installer").setup({
automatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig)
ui = {

View File

@ -3,6 +3,7 @@ typeset -U PATH path
# Disable files
export LESSHISTFILE=-
export $(dbus-launch)
# Default Apps
export EDITOR="nvim"