Merge branch 'master' into arch-laptop

This commit is contained in:
Michael Chalupiak 2024-11-01 16:21:44 -04:00
commit add9970e3e
11 changed files with 40 additions and 50 deletions

View File

@ -125,7 +125,7 @@ fi
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
export EDITOR='kak'
export EDITOR='nvim'
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
@ -171,4 +171,4 @@ alias ssh='TERM="xterm-256color" ssh'
export DISABLE_TELEMETRY=YES
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env

View File

@ -805,7 +805,25 @@ path = "runtime/queries/llvm"
# TODO
# lua
# TODO
# [language.lua.grammar.source.git]
# url = "https://github.com/tree-sitter-grammars/tree-sitter-lua"
# pin = "88e446476a1e97a8724dff7a23e2d709855077f2"
# [language.lua.grammar]
# path = "src"
# compile = "cc"
# compile_args = ["-c", "-fpic", "../scanner.c", "../parser.c", "-I", ".."]
# compile_flags = ["-O3"]
# link = "cc"
# link_args = ["-shared", "-fpic", "scanner.o", "parser.o", "-o", "lua.so"]
# link_flags = ["-O3"]
# [language.lua.queries.source.git]
# url = "https://github.com/helix-editor/helix"
# pin = "e76020ddb93eeb051de606c24f92189c3fc55547"
# [language.lua.gueries]
# path = "runtime/queries/lua"
# make
[language.make.grammar.source.git]

View File

@ -34,10 +34,10 @@ plug "tinted-theming/base16-kakoune"
## Treesitter ##
eval %sh{ kak-tree-sitter -dks --with-highlighting --with-text-objects --init $kak_session }
#eval %sh{ kak-tree-sitter -dksv --with-highlighting --with-text-objects --init $kak_session }
#eval %sh{ kak-tree-sitter -dks --with-text-objects --session $kak_session }
#eval %sh{ kak-tree-sitter -dks --with-highlighting --session $kak_session }
eval %sh{ kak-tree-sitter -dks --init $kak_session }
evaluate-commands %sh{
echo "colorscheme base16-$BASE16_THEME"
}

View File

@ -1,5 +1,6 @@
function colors(color)
color = color or 'vscode'
color = os.getenv("BASE16_THEME")
alt_color = 'rose-pine' or color
-- Available values: `'hard'`, `'medium'`, `'soft'`
vim.g.gruvbox_material_background = 'medium'
-- Available values: `'material'`, `'mix'`, `'original'`
@ -8,7 +9,9 @@ function colors(color)
vim.g.everforest_background = 'hard'
vim.g.gruvbox_material_better_performance = 1
vim.g.everforest_better_performance = 1
vim.cmd.colorscheme(color)
if not pcall(vim.cmd.colorscheme, color) then
vim.cmd.colorscheme(alt_color)
end
end
colors()

View File

@ -1,6 +1,9 @@
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.wrap = true
vim.opt.linebreak = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
@ -10,9 +13,6 @@ vim.opt.showmode = false
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"

View File

@ -20,7 +20,7 @@ settings:
https://outlook.live.com?mailtouri=%25s: true
https://outlook.office.com?mailtouri=%25s: true
fonts.default_family:
global: Cascadia Code
global: Olympe Mono Hacked
fonts.default_size:
global: 12pt
url.default_page:

View File

@ -27,7 +27,8 @@ theme-file-extension = ".config.py"
path = "https://github.com/HaoZeke/base16-zathura"
name = "tinted-zathura"
themes-dir = "build_schemes/colors"
hook = "cat ~/.config/zathura/config > ~/.config/zathura/zathurarc && cat %f >> ~/.config/zathura/zathurarc"
# hook = "cat ~/.config/zathura/config > ~/.config/zathura/zathurarc && cat %f >> ~/.config/zathura/zathurarc"
hook = "cp -f %f ~/.config/zathura/colors"
[[items]]
path = "https://github.com/tinted-theming/base16-xresources"

View File

@ -1,36 +1,3 @@
set font "Cascadia Code 12"
# Base16 Gruvbox dark, hard
# Author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
set default-bg "#1d2021"
set default-fg "#3c3836"
set statusbar-fg "#bdae93"
set statusbar-bg "#504945"
set inputbar-bg "#1d2021"
set inputbar-fg "#fbf1c7"
set notification-bg "#1d2021"
set notification-fg "#fbf1c7"
set notification-error-bg "#1d2021"
set notification-error-fg "#fb4934"
set notification-warning-bg "#1d2021"
set notification-warning-fg "#fb4934"
set highlight-color "#fabd2f"
set highlight-active-color "#83a598"
set completion-bg "#3c3836"
set completion-fg "#83a598"
set completion-highlight-fg "#fbf1c7"
set completion-highlight-bg "#83a598"
set recolor-lightcolor "#1d2021"
set recolor-darkcolor "#ebdbb2"
set recolor "false"
set recolor-keephue "false"
include colors
set font "Olympe Mono Hacked 12"
set database "sqlite"

View File

@ -19,7 +19,7 @@
;;
;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd
;; font string. You generally only need these two:
(setq doom-font (font-spec :family "Cascadia Code" :size 28 )
(setq doom-font (font-spec :family "Olympe Mono Hacked" :size 28 )
doom-variable-pitch-font (font-spec :family "Cantarell" :size 28 :weight 'bold))
;; There are two ways to load a theme. Both assume the theme is installed and

View File

@ -7,7 +7,7 @@
process = git-lfs filter-process
required = true
[core]
editor = kak
editor = nvim
[init]
defaultBranch = master
[sendemail]

View File

@ -1,3 +1,4 @@
xrdb -merge ~/.Xresources
/home/mikec/.scripts/startup.sh
exec dwm
# exec bspwm