add initial nvim and zsh dotfiles
This commit is contained in:
25
.chezmoiexternal.toml
Normal file
25
.chezmoiexternal.toml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
[".oh-my-zsh"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/plugins/zsh-syntax-highlighting"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/zsh-users/zsh-syntax-highlighting/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/plugins/zsh-autosuggestions"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".fzf"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/junegunn/fzf/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/themes/powerlevel10k"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/romkatv/powerlevel10k/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
1
.chezmoiignore
Normal file
1
.chezmoiignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
~/.oh-my-zsh/cache/*
|
||||||
0
dot_config/.keep
Normal file
0
dot_config/.keep
Normal file
0
dot_config/nvim/.keep
Normal file
0
dot_config/nvim/.keep
Normal file
111
dot_config/nvim/init.vim
Normal file
111
dot_config/nvim/init.vim
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
set nocompatible
|
||||||
|
|
||||||
|
call plug#begin()
|
||||||
|
Plug 'vim-test/vim-test'
|
||||||
|
Plug 'tpope/vim-commentary'
|
||||||
|
Plug 'sheerun/vim-polyglot'
|
||||||
|
Plug 'mhartington/oceanic-next'
|
||||||
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
Plug 'tpope/vim-fugitive'
|
||||||
|
Plug 'mhinz/vim-signify'
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
|
Plug 'peitalin/vim-jsx-typescript'
|
||||||
|
Plug 'skywind3000/asyncrun.vim'
|
||||||
|
Plug 'jiangmiao/auto-pairs'
|
||||||
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||||
|
Plug 'junegunn/fzf.vim'
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
map <C-p> :Files<CR>
|
||||||
|
|
||||||
|
let g:asyncrun_open = 8
|
||||||
|
let g:asyncrun_status = ''
|
||||||
|
|
||||||
|
command! -bang -nargs=* -complete=file Make AsyncRun -program=make @ <args>
|
||||||
|
|
||||||
|
let g:python3_host_prog = '~/.miniconda3/bin/python3'
|
||||||
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
|
let g:airline#extensions#tabline#buffer_nr_show = 1
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:airline_theme='tomorrow'
|
||||||
|
let g:airline_solarized_bg='dark'
|
||||||
|
let g:airline#extensions#hunks#enabled=1
|
||||||
|
let g:airline#extensions#branch#enabled=1
|
||||||
|
let g:airline_section_error = airline#section#create_right(['%{g:asyncrun_status}'])
|
||||||
|
|
||||||
|
" Set leader to comma
|
||||||
|
let mapleader=","
|
||||||
|
" Quick edit init.vim
|
||||||
|
nnoremap <Leader>v :n $MYVIMRC<cr>
|
||||||
|
|
||||||
|
" For vim-test: these Ctrl mappings work well when Caps Lock is mapped to Ctrl
|
||||||
|
nmap <silent> t<C-n> :TestNearest<CR>
|
||||||
|
nmap <silent> t<C-f> :TestFile<CR>
|
||||||
|
nmap <silent> t<C-s> :TestSuite<CR>
|
||||||
|
nmap <silent> t<C-l> :TestLast<CR>
|
||||||
|
nmap <silent> t<C-g> :TestVisit<CR>
|
||||||
|
let test#strategy = "asyncrun"
|
||||||
|
|
||||||
|
" Reloads vimrc after saving but keep cursor position
|
||||||
|
if !exists('*ReloadVimrc')
|
||||||
|
fun! ReloadVimrc()
|
||||||
|
let save_cursor = getcurpos()
|
||||||
|
source $MYVIMRC
|
||||||
|
call setpos('.', save_cursor)
|
||||||
|
endfun
|
||||||
|
endif
|
||||||
|
autocmd! BufWritePost $MYVIMRC call ReloadVimrc()
|
||||||
|
|
||||||
|
command! -nargs=0 Prettier :CocCommand prettier.formatFile
|
||||||
|
|
||||||
|
set background=dark
|
||||||
|
" Or if you have Neovim >= 0.1.5
|
||||||
|
if (has("termguicolors"))
|
||||||
|
set termguicolors
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Theme
|
||||||
|
syntax enable
|
||||||
|
colorscheme gruvbox
|
||||||
|
|
||||||
|
" TextEdit might fail if hidden is not set.
|
||||||
|
set hidden
|
||||||
|
set number
|
||||||
|
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set softtabstop=4
|
||||||
|
set expandtab
|
||||||
|
set smarttab
|
||||||
|
|
||||||
|
" Some servers have issues with backup files, see #649.
|
||||||
|
set nobackup
|
||||||
|
set nowritebackup
|
||||||
|
|
||||||
|
" Give more space for displaying messages.
|
||||||
|
set cmdheight=2
|
||||||
|
|
||||||
|
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
|
||||||
|
" delays and poor user experience.
|
||||||
|
set updatetime=300
|
||||||
|
|
||||||
|
" Don't pass messages to |ins-completion-menu|.
|
||||||
|
set shortmess+=c
|
||||||
|
|
||||||
|
" Always show the signcolumn, otherwise it would shift the text each time
|
||||||
|
" diagnostics appear/become resolved.
|
||||||
|
if has("patch-8.1.1564")
|
||||||
|
" Recently vim can merge signcolumn and number column into one
|
||||||
|
set signcolumn=number
|
||||||
|
else
|
||||||
|
set signcolumn=yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Navigate buffers like tabs (gt & gT)
|
||||||
|
nnoremap <silent> gb :bnext<CR>
|
||||||
|
nnoremap <silent> gB :bprevious<CR>
|
||||||
|
|
||||||
|
" Set termdebug
|
||||||
|
let g:termdebug_wide=1
|
||||||
0
dot_local/.keep
Normal file
0
dot_local/.keep
Normal file
0
dot_local/share/.keep
Normal file
0
dot_local/share/.keep
Normal file
0
dot_local/share/chezmoi/.keep
Normal file
0
dot_local/share/chezmoi/.keep
Normal file
25
dot_local/share/chezmoi/dot_chezmoiexternal.toml
Normal file
25
dot_local/share/chezmoi/dot_chezmoiexternal.toml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
[".oh-my-zsh"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/plugins/zsh-syntax-highlighting"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/zsh-users/zsh-syntax-highlighting/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/plugins/zsh-autosuggestions"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".fzf"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/junegunn/fzf/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
|
[".oh-my-zsh/custom/themes/powerlevel10k"]
|
||||||
|
type = "archive"
|
||||||
|
url = "https://github.com/romkatv/powerlevel10k/archive/master.tar.gz"
|
||||||
|
exact = true
|
||||||
|
stripComponents = 1
|
||||||
1
dot_local/share/chezmoi/dot_chezmoiignore
Normal file
1
dot_local/share/chezmoi/dot_chezmoiignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
~/.oh-my-zsh/cache/*
|
||||||
1641
dot_p10k.zsh
Normal file
1641
dot_p10k.zsh
Normal file
File diff suppressed because it is too large
Load Diff
117
dot_zshrc
Normal file
117
dot_zshrc
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||||||
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||||
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If you come from bash you might have to change your $PATH.
|
||||||
|
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
|
# Path to your oh-my-zsh installation.
|
||||||
|
export ZSH="$(echo $HOME)/.oh-my-zsh"
|
||||||
|
|
||||||
|
# Set name of the theme to load --- if set to "random", it will
|
||||||
|
# load a random theme each time oh-my-zsh is loaded, in which case,
|
||||||
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||||
|
DISABLE_AUTO_UPDATE = true
|
||||||
|
|
||||||
|
# Set list of themes to pick from when loading at random
|
||||||
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
# a theme from this variable instead of looking in $ZSH/themes/
|
||||||
|
# If set to an empty array, this variable will have no effect.
|
||||||
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
||||||
|
|
||||||
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to use hyphen-insensitive completion.
|
||||||
|
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||||||
|
# DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to automatically update without prompting.
|
||||||
|
# DISABLE_UPDATE_PROMPT="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# export UPDATE_ZSH_DAYS=13
|
||||||
|
|
||||||
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||||
|
# DISABLE_MAGIC_FUNCTIONS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable colors in ls.
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable auto-setting terminal title.
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to enable command auto-correction.
|
||||||
|
# ENABLE_CORRECTION="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output.
|
||||||
|
# You can set one of the optional three formats:
|
||||||
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
|
# or set a custom format using the strftime function format specifications,
|
||||||
|
# see 'man strftime' for details.
|
||||||
|
# HIST_STAMPS="mm/dd/yyyy"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# Which plugins would you like to load?
|
||||||
|
# Standard plugins can be found in $ZSH/plugins/
|
||||||
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(
|
||||||
|
git
|
||||||
|
fzf
|
||||||
|
zsh-autosuggestions
|
||||||
|
zsh-syntax-highlighting
|
||||||
|
)
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
# You may need to manually set your language environment
|
||||||
|
# export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='mvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
# export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||||
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
Reference in New Issue
Block a user