mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
Add colorizer
This commit is contained in:
parent
516468f2a3
commit
a05c13009d
@ -871,3 +871,6 @@ key_bindings:
|
||||
|
||||
# Print all received window events.
|
||||
#print_events: false
|
||||
|
||||
import:
|
||||
- ~/.config/alacritty/dracula.yml
|
||||
|
||||
@ -573,6 +573,11 @@ 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" }
|
||||
@ -580,8 +585,7 @@ awful.rules.rules = {
|
||||
},
|
||||
{
|
||||
rule_any = {
|
||||
class = { "spotify", "Spotify", "corectrl" },
|
||||
name = { "Spotify", "CoreCtrl" }
|
||||
class = { "spotify", "Spotify" },
|
||||
}, properties = { screen = 1, tag = "9" }
|
||||
},
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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 = {
|
||||
|
||||
@ -3,6 +3,7 @@ typeset -U PATH path
|
||||
# Disable files
|
||||
export LESSHISTFILE=-
|
||||
|
||||
export $(dbus-launch)
|
||||
|
||||
# Default Apps
|
||||
export EDITOR="nvim"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user