switch back to vim
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user