This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim:fileencoding=utf-8:foldmethod=marker | |
include ./theme.conf | |
font_family Iosevka Extended | |
# font_family CommitMono Nerd Font | |
bold_font auto | |
italic_font auto | |
bold_italic_font auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See docs: | |
# https://alacritty.org/config-alacritty.html | |
live_config_reload = true | |
import = [ | |
"~/.config/alacritty/alacritty-theme/themes/horizon-dark.toml" | |
] | |
[env] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- local dark_colorscheme = "nightly" | |
local dark_colorscheme = { "monokai-pro-spectrum", "dark" } | |
-- local dark_colorscheme = { "srcery", "dark" } | |
-- local dark_colorscheme = { "biscuit", "dark" } | |
-- local light_colorscheme = { "dayfox", "light" } | |
local colorscheme = dark_colorscheme | |
---{{{ Lazy | |
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" | |
if not vim.loop.fs_stat(lazypath) then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g default-command "${SHELL}" | |
set -g status-position top | |
set -g status-style 'fg=#1d2021 bg=#458588 bold' | |
set-window-option -g window-status-current-style bg="#83a598" | |
set -sg escape-time 0 | |
set -g mouse on | |
unbind C-b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration for Alacritty, the GPU enhanced terminal emulator. | |
# Import additional configuration files | |
# | |
# Imports are loaded in order, skipping all missing files, with the importing | |
# file being loaded last. If a field is already present in a previous import, it | |
# will be replaced. | |
# | |
# All imports must either be absolute paths starting with `/`, or paths relative | |
# to the user's home directory starting with `~/`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Autocmd = vim.api.nvim_create_autocmd | |
Augroup = vim.api.nvim_create_augroup | |
Cmd = vim.api.nvim_command | |
Map = vim.api.nvim_set_keymap | |
Nmap = function(key, cmd, conf) | |
Map('n', key, cmd, conf) | |
end | |
Lualine_extra = { | |
navic_component = nil, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/fish | |
if test (count $argv) -gt 0 | |
goneovim --maximized (realpath $argv[1]) &> /dev/null &; disown | |
else | |
goneovim --maximized (realpath .) &> /dev/null &; disown | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(default ((t (:inherit nil :extend nil :stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :foundry "outline" :family "JetBrains Mono"))))) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compile: | |
pkg-config fmt | |
g++ --std=c++17 code.cc -lfmt | |
run: compile | |
./a.out > out.dot | |
dot -Tpng -Nfontname=Google\ Sans out.dot > out.png | |
disp: | |
firefox out.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin() | |
" Plug 'flazz/vim-colorschemes' | |
" Plug 'sonph/onehalf' | |
" Plug 'wfxr/minimap.vim' | |
" Plug 'Xuyuanp/scrollbar.nvim' |
NewerOlder