1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Compare commits

...

7 Commits

Author SHA1 Message Date
43b10cc0a1
Add colorschemes 2020-06-18 15:03:13 -04:00
a59993f1d7
Remove coffeescript from markdown fencing 2020-06-18 15:02:55 -04:00
84dd99f5aa
Onedark theme for airline 2020-06-18 15:02:45 -04:00
46c218f0c2
Use osx keychain helper for git 2020-06-18 15:02:22 -04:00
486602a06e
Update Chunk config 2020-06-18 15:02:09 -04:00
8201b72990
Use onedark 2020-06-18 15:01:15 -04:00
1c543d379e
Update Karabiner config
The country code change fixes the problem where ` and § are swapped.
2020-06-18 15:00:49 -04:00
8 changed files with 24 additions and 18 deletions

View File

@ -77,7 +77,7 @@ chunkc set bsp_split_mode optimal
chunkc set bsp_split_ratio 0.5
chunkc set monitor_focus_cycle 1
chunkc set window_focus_cycle monitor
chunkc set window_focus_cycle all
chunkc set mouse_follows_focus intrinsic
chunkc set window_float_next 0

View File

@ -916,10 +916,10 @@
],
"virtual_hid_keyboard": {
"caps_lock_delay_milliseconds": 0,
"country_code": 0,
"country_code": 1,
"keyboard_type": "iso",
"mouse_key_xy_scale": 100
}
}
]
}
}

View File

@ -1,3 +1,5 @@
[credential]
helper = osxkeychain
[format]
pretty = %Cblue%h%Creset %Cgreen[%ar]%Creset (%an) %s
[color "diff"]

24
skhdrc
View File

@ -5,8 +5,8 @@ alt - f : chunkc tiling::window --toggle fullscreen
shift + alt - space : chunkc tiling::window --toggle float
# change layout of desktop
alt - e : chunkc tiling::desktop --layout bsp
alt - s : chunkc tiling::desktop --layout monocle
shift + alt + ctrl + cmd - e : chunkc tiling::desktop --layout bsp
shift + alt + ctrl + cmd - s : chunkc tiling::desktop --layout monocle
# kill focused window
shift + alt - q : chunkc tiling::window --close
@ -29,16 +29,16 @@ shift + alt - l : chunkc tiling::window --warp east
alt - r : chunkc tiling::desktop --rotate 90
# move focused container to workspace
shift + alt - m : chunkc tiling::window --send-to-desktop $(chunkc get _last_active_desktop)
shift + alt - p : chunkc tiling::window --send-to-desktop prev
shift + alt - n : chunkc tiling::window --send-to-desktop next
shift + alt - 1 : chunkc tiling::window --send-to-desktop 1
shift + alt - 2 : chunkc tiling::window --send-to-desktop 2
shift + alt - 3 : chunkc tiling::window --send-to-desktop 3
shift + alt - 4 : chunkc tiling::window --send-to-desktop 4
shift + alt - 5 : chunkc tiling::window --send-to-desktop 5
shift + alt - 6 : chunkc tiling::window --send-to-desktop 6
shift + alt + ctrl + cmd - m : chunkc tiling::window --send-to-desktop $(chunkc get _last_active_desktop)
shift + alt + ctrl + cmd - p : chunkc tiling::window --send-to-desktop prev
shift + alt + ctrl + cmd - n : chunkc tiling::window --send-to-desktop next
shift + alt + ctrl + cmd - 1 : chunkc tiling::window --send-to-desktop 1
shift + alt + ctrl + cmd - 2 : chunkc tiling::window --send-to-desktop 2
shift + alt + ctrl + cmd - 3 : chunkc tiling::window --send-to-desktop 3
shift + alt + ctrl + cmd - 4 : chunkc tiling::window --send-to-desktop 4
shift + alt + ctrl + cmd - 5 : chunkc tiling::window --send-to-desktop 5
shift + alt + ctrl + cmd - 6 : chunkc tiling::window --send-to-desktop 6
# float / unfloat window and center on screen
alt - t : chunkc tiling::window --toggle float;\
shift + alt + ctrl + cmd - t : chunkc tiling::window --toggle float;\
chunkc tiling::window --grid-layout 4:4:1:1:2:2

View File

@ -2,7 +2,7 @@ set noshowmode
if has("gui_running") || has("gui_vimr")
let g:airline_solarized_bg = 'dark'
let g:airline_theme = 'solarized'
let g:airline_theme = 'onedark'
endif
let g:airline_powerline_fonts = 0

View File

@ -2,5 +2,5 @@ set background=dark
colorscheme Tomorrow-Night
if has("gui_running") || has("gui_vimr")
colorscheme solarized8
colorscheme onedark
endif

View File

@ -1 +1 @@
let g:markdown_fenced_languages = ['coffee', 'css', 'elixir', 'erb=eruby', 'javascript', 'js=javascript', 'json=javascript', 'ruby', 'sass', 'xml']
let g:markdown_fenced_languages = ['css', 'elixir', 'erb=eruby', 'javascript', 'js=javascript', 'json=javascript', 'ruby', 'sass', 'xml']

View File

@ -57,3 +57,7 @@ Plug 'vim-scripts/wombat256.vim'
Plug 'lifepillar/vim-solarized8'
Plug 'iCyMind/NeoSolarized'
Plug 'ajh17/Spacegray.vim'
Plug 'joshdick/onedark.vim'
Plug 'KeitaNakamura/neodark.vim'
Plug 'rakr/vim-one'
Plug 'dracula/vim'