forked from jakewies/.dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
256 additions
and
57 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
window: | ||
dynamic_title: true | ||
padding: | ||
x: 10 | ||
y: 10 | ||
|
||
|
||
scrolling: | ||
history: 100000 | ||
multiplier: 3 | ||
|
||
|
||
font: | ||
normal: | ||
family: "MesloLGS NF" | ||
size: 20.0 | ||
|
||
|
||
selection: | ||
# This string contains all characters that are used as separators for | ||
# "semantic words" in Alacritty. | ||
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" | ||
# When set to `true`, selected text will be copied to the primary clipboard. | ||
save_to_clipboard: true | ||
|
||
|
||
mouse: | ||
hints: | ||
launcher: | ||
# This depends on your OS, on Mac it's `open` | ||
program: open | ||
modifiers: Command | ||
|
||
|
||
schemes: | ||
gruvbox_material_hard_dark: &gruvbox_material_hard_dark | ||
primary: | ||
background: '0x1d2021' | ||
foreground: '0xd4be98' | ||
normal: | ||
black: '0x32302f' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
bright: | ||
black: '0x32302f' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
gruvbox_material_medium_dark: &gruvbox_material_medium_dark | ||
primary: | ||
background: '0x282828' | ||
foreground: '0xd4be98' | ||
normal: | ||
black: '0x3c3836' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
bright: | ||
black: '0x3c3836' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
gruvbox_material_soft_dark: &gruvbox_material_soft_dark | ||
primary: | ||
background: '0x32302f' | ||
foreground: '0xd4be98' | ||
normal: | ||
black: '0x45403d' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
bright: | ||
black: '0x45403d' | ||
red: '0xea6962' | ||
green: '0xa9b665' | ||
yellow: '0xd8a657' | ||
blue: '0x7daea3' | ||
magenta: '0xd3869b' | ||
cyan: '0x89b482' | ||
white: '0xd4be98' | ||
|
||
colors: *gruvbox_material_medium_dark | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
email = [email protected] | ||
[core] | ||
excludesfile = ~/.gitignore_global | ||
editor = nvim | ||
[pull] | ||
ff = only | ||
[init] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
let $FZF_DEFAULT_OPTS='--layout=reverse --border --padding=1' | ||
|
||
|
||
if executable('rg') | ||
let g:rg_derive_root='true' | ||
endif | ||
|
||
|
||
" Custom :RG command (improvement on :Rg) | ||
" https://github.com/junegunn/fzf.vim#example-rg-command-with-preview-window | ||
function! RipgrepFzf(query, fullscreen) | ||
let command_fmt = 'rg --column --line-number --no-heading --color=always --smart-case -- %s || true' | ||
let initial_command = printf(command_fmt, shellescape(a:query)) | ||
let reload_command = printf(command_fmt, '{q}') | ||
let spec = {'options': ['--phony', '--query', a:query, '--bind', 'change:reload:'.reload_command], 'window': { 'height': 1, 'width': 1 }} | ||
call fzf#vim#grep(initial_command, 1, fzf#vim#with_preview(spec), a:fullscreen) | ||
endfunction | ||
|
||
command! -bang -nargs=* RG call RipgrepFzf(<q-args>, <bang>0) | ||
|
||
|
||
" Customize :Files command | ||
command! -bang -nargs=? -complete=dir Files call fzf#vim#files(<q-args>, {'window': { 'height': 0.4, 'width': 0.3, 'yoffset': 0.05 } }, <bang>0) | ||
|
||
|
||
" Remaps | ||
nnoremap <C-p> :Files<cr> | ||
nnoremap <C-f> :RG<Cr> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
let g:lightline = {} | ||
let g:lightline.colorscheme = 'gruvbox_material' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
lua <<EOF | ||
|
||
local nvim_lsp = require('lspconfig') | ||
|
||
nvim_lsp.tsserver.setup {} | ||
|
||
EOF |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
let g:tmuxline_powerline_separators = 0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set textwidth=72 | ||
set colorcolumn=73 | ||
|
||
" start on first line | ||
call setpos('.', [0, 1, 1, 0]) |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This tmux statusbar config was created by tmuxline.vim | ||
# on Thu, 23 Sep 2021 | ||
|
||
set -g status-justify "left" | ||
set -g status "on" | ||
set -g status-left-style "none" | ||
set -g message-command-style "fg=#ddc7a1,bg=#504945" | ||
set -g status-right-style "none" | ||
set -g pane-active-border-style "fg=#a89984" | ||
set -g status-style "none,bg=#32302f" | ||
set -g message-style "fg=#ddc7a1,bg=#504945" | ||
set -g pane-border-style "fg=#504945" | ||
set -g status-right-length "100" | ||
set -g status-left-length "100" | ||
setw -g window-status-activity-style "none" | ||
setw -g window-status-separator "" | ||
setw -g window-status-style "none,fg=#ddc7a1,bg=#32302f" | ||
set -g status-left "#[fg=#282828,bg=#a89984,bold] #S #[fg=#a89984,bg=#32302f,nobold,nounderscore,noitalics]" | ||
set -g status-right "#[fg=#504945,bg=#32302f,nobold,nounderscore,noitalics]#[fg=#ddc7a1,bg=#504945] %Y-%m-%d | %H:%M #[fg=#a89984,bg=#504945,nobold,nounderscore,noitalics]#[fg=#282828,bg=#a89984,bold] #h " | ||
setw -g window-status-format "#[fg=#ddc7a1,bg=#32302f] #I |#[fg=#ddc7a1,bg=#32302f] #W " | ||
setw -g window-status-current-format "#[fg=#32302f,bg=#504945,nobold,nounderscore,noitalics]#[fg=#ddc7a1,bg=#504945] #I |#[fg=#ddc7a1,bg=#504945] #W #[fg=#504945,bg=#32302f,nobold,nounderscore,noitalics]" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
# start | ||
lukechilds/zsh-nvm | ||
|
||
rupa/z | ||
|
||
robbyrussell/oh-my-zsh path:plugins/colored-man-pages | ||
robbyrussell/oh-my-zsh path:plugins/command-not-found | ||
robbyrussell/oh-my-zsh path:plugins/git | ||
robbyrussell/oh-my-zsh path:plugins/git-extras | ||
robbyrussell/oh-my-zsh path:plugins/node | ||
|
||
# zsh-async must load before pure | ||
mafredri/zsh-async | ||
sindresorhus/pure | ||
romkatv/powerlevel10k | ||
|
||
rupa/z | ||
|
||
zsh-users/zsh-autosuggestions | ||
zsh-users/zsh-completions | ||
zsh-users/zsh-syntax-highlighting | ||
|
Oops, something went wrong.