1
0
Fork 0
This commit is contained in:
Von Random 2023-01-06 20:01:56 +02:00
parent 4526a1aead
commit 4fefa2f242
3 changed files with 50 additions and 17 deletions

View file

@ -11,7 +11,7 @@
* Aesthetics * Aesthetics
Font and theme Font and theme
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 15) (setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 14)
doom-variable-pitch-font (font-spec :family "PT Sans")) doom-variable-pitch-font (font-spec :family "PT Sans"))
(setq doom-theme 'doom-gruvbox) (setq doom-theme 'doom-gruvbox)
#+end_src #+end_src

View file

@ -1,32 +1,68 @@
# I am config # I am config
font_family JetBrains Mono font_family JetBrainsMono Nerd Font
font_size 16 font_size 14
adjust_line_height 0 adjust_line_height 0
box_drawing_scale 0.1, 0.5, 1, 1.5 box_drawing_scale 0.1, 0.5, 1, 1.5
disable_ligatures cursor disable_ligatures cursor
cursor_blink_interval 0 cursor_blink_interval 0
resize_in_steps yes term kitty
term xterm-256color
tab_bar_style powerline tab_title_template "{index}┇{title}"
tab_bar_style slant
tab_bar_edge top
active_tab_foreground #ebdbb2
active_tab_background #282828
active_tab_font_style bold
inactive_tab_background #a89984
inactive_tab_foreground #282828
inactive_tab_font_style italic
tab_bar_background #a89984
enabled_layouts splits,stack
enable_audio_bell no enable_audio_bell no
strip_trailing_spaces always strip_trailing_spaces always
open_url_withopen_url_with default open_url_with default
window_padding_width 0 window_padding_width 0
placement_strategy center placement_strategy top-left
remember_window_size no remember_window_size no
initial_window_width 120c initial_window_width 120c
initial_window_height 30c initial_window_height 30c
shell_integration no-cursor shell_integration no-cursor
map alt+c copy_to_clipboard map ctrl+g>c new_tab
map ctrl+alt+c copy_to_clipboard map ctrl+g>n next_tab
map alt+v paste_from_clipboard map ctrl+g>p prev_tab
map ctrl+alt+v paste_from_clipboard map ctrl+g>x close_window
mouse_map left click ungrabbed mouse_click_url_or_select map ctrl+g>s launch --location=hsplit
mouse_map alt+left press ungrabbed mouse_selection rectangle map ctrl+g>v launch --location=vsplit
map ctrl+g>r start_resizing_window
map ctrl+g>h neighboring_window left
map ctrl+g>j neighboring_window down
map ctrl+g>k neighboring_window up
map ctrl+g>l neighboring_window right
map ctrl+g>f show_scrollback
map ctrl+g>z toggle_layout stack
map ctrl+g>1 goto_tab 1
map ctrl+g>2 goto_tab 2
map ctrl+g>3 goto_tab 3
map ctrl+g>4 goto_tab 4
map ctrl+g>5 goto_tab 5
map ctrl+g>6 goto_tab 6
map ctrl+g>7 goto_tab 7
map ctrl+g>8 goto_tab 8
map ctrl+g>9 goto_tab 9
map ctrl+g>0 goto_tab 10
map alt+c copy_to_clipboard
map ctrl+alt+c copy_to_clipboard
map alt+v paste_from_clipboard
map ctrl+alt+v paste_from_clipboard
mouse_map left click ungrabbed mouse_click_url_or_select
mouse_map alt+left press ungrabbed mouse_selection rectangle
# Gruvbox Dark # Gruvbox Dark
selection_foreground #282828 selection_foreground #282828

View file

@ -1,5 +1,3 @@
unbind C-b
bind C-g send-prefix
bind v split-window -h bind v split-window -h
bind s split-window -v bind s split-window -v
bind h select-pane -L bind h select-pane -L
@ -9,7 +7,6 @@ bind l select-pane -R
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'" bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
bind y command-prompt break-pane bind y command-prompt break-pane
bind N new-session bind N new-session
set -g prefix C-g
set -g mode-keys "vi" set -g mode-keys "vi"
set -g escape-time "0" set -g escape-time "0"
set -g history-limit "10000" set -g history-limit "10000"