diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-04-16 20:44:34 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-04-16 20:44:34 +0200 |
commit | 2f569a703d95b8fe5d18d05d9fb9374b73e87568 (patch) | |
tree | e8f071d73aaf1cb113e4ca81a6e0bc98c1892dc9 | |
parent | 10b5d39766588dbe9a9fef6e4f09f31d287c7b9f (diff) | |
parent | 52ad9174989fcc8ff5deb0cf80ea80601b0cfbd8 (diff) |
Merge branch 'main' of github.com:boozec/dotfiles
-rw-r--r-- | .config/.alacritty.toml | 39 | ||||
-rw-r--r-- | .config/nvim/init.vim | 3 |
2 files changed, 42 insertions, 0 deletions
diff --git a/.config/.alacritty.toml b/.config/.alacritty.toml new file mode 100644 index 0000000..2bdb437 --- /dev/null +++ b/.config/.alacritty.toml @@ -0,0 +1,39 @@ +[colors.bright] +black = "#6a6a6a" +blue = "#ffaf00" +cyan = "#00afaf" +green = "#afd700" +magenta = "#ffaf00" +red = "#e74c3c" +white = "#5f8787" +yellow = "#f1c40f" + +[colors.cursor] +cursor = "#808080" +text = "#424242" + +[colors.normal] +black = "#000000" +blue = "#5fafd7" +cyan = "#2ecc71" +green = "#5faf00" +magenta = "#808080" +red = "#af005f" +white = "#f2f2f2" +yellow = "#f1c40f" + +[colors.primary] +background = "#000000" +foreground = "#c1c1c1" + +[font] +size = 11.5 + +[font.normal] +family = "GitLabMono" +style = "Regular" + +[shell] +args = ["new"] +program = "/usr/bin/tmux" +# program = "/home/santo/.cargo/bin/zellij" diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 7c4845b..9756ea5 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -104,6 +104,9 @@ set noswapfile set termguicolors set background=dark +" copy with `y` to clipboard +set clipboard+=unnamedplus + if has('nvim') let base16colorspace=256 "colorscheme base16-irblack |