add nt
This commit is contained in:
parent
8ef9eebee7
commit
78d2d6e93a
2
dotbot
2
dotbot
@ -1 +1 @@
|
|||||||
Subproject commit 769767c129c8f26eb66dca06dfa4a1bddbac8a9e
|
Subproject commit d2f76a25933f97cd37ef94e3bf9c134b9c55a02a
|
BIN
font/Meslo LG M Regular Nerd Font Complete.ttf
Normal file
BIN
font/Meslo LG M Regular Nerd Font Complete.ttf
Normal file
Binary file not shown.
@ -6,9 +6,7 @@
|
|||||||
- clean: ['~', '~/.oh-my-zsh/custom/']
|
- clean: ['~', '~/.oh-my-zsh/custom/']
|
||||||
|
|
||||||
- shell:
|
- shell:
|
||||||
- [sh pre-install.sh, Running setup script]
|
|
||||||
- [git submodule update --init --recursive, Installing submodules]
|
- [git submodule update --init --recursive, Installing submodules]
|
||||||
- [sh fonts/install.sh, Installing Powerline fonts]
|
|
||||||
|
|
||||||
- link:
|
- link:
|
||||||
~/.dotfiles: ''
|
~/.dotfiles: ''
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit f07d7baea36010bfa74708844d404517ea6ac473
|
Subproject commit cf67cad46557d57d5d2399e6d893c317126e037c
|
@ -1,3 +1,12 @@
|
|||||||
let g:netrw_dirhistmax =10
|
let g:netrw_dirhistmax =10
|
||||||
let g:netrw_dirhistcnt =1
|
let g:netrw_dirhistcnt =0
|
||||||
|
let g:netrw_dirhist_0='/home/kdeppe/FRMS/internal/pkg/server'
|
||||||
|
let g:netrw_dirhist_9='/home/kdeppe/dotfiles/vim'
|
||||||
|
let g:netrw_dirhist_8='/home/kdeppe/FRMS/cmd/server'
|
||||||
|
let g:netrw_dirhist_7='/home/kdeppe/FRMS/internal/configs'
|
||||||
|
let g:netrw_dirhist_6='/home/kdeppe/FRMS/internal/pkg/system'
|
||||||
|
let g:netrw_dirhist_5='/home/kdeppe/FRMS/internal/pkg/sensor'
|
||||||
|
let g:netrw_dirhist_4='/home/kdeppe/FRMS/internal/pkg'
|
||||||
|
let g:netrw_dirhist_3='/home/kdeppe/FRMS/internal/pkg/I2C'
|
||||||
|
let g:netrw_dirhist_2='/home/kdeppe/FRMS/cmd'
|
||||||
let g:netrw_dirhist_1='/home/kdeppe/dotfiles/vim'
|
let g:netrw_dirhist_1='/home/kdeppe/dotfiles/vim'
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Subproject commit fc85a6f07c2cd694be93496ffad75be126240068
|
|
1
vim/pack/man/start/DrawIt
Submodule
1
vim/pack/man/start/DrawIt
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 4e824fc939cec81dc2a8f4d91aaeb6151d1cc140
|
21
vimrc
21
vimrc
@ -14,9 +14,18 @@ syntax enable
|
|||||||
colorscheme hybrid
|
colorscheme hybrid
|
||||||
|
|
||||||
" syntax highlighting
|
" syntax highlighting
|
||||||
let g:go_highlight_types = 1
|
let g:go_highlight_types=1
|
||||||
let g:go_highlight_fields = 1
|
let g:go_highlight_fields=1
|
||||||
let g:go_highlight_functions = 1
|
let g:go_highlight_functions=1
|
||||||
let g:go_highlight_function_calls = 1
|
let g:go_highlight_function_calls=1
|
||||||
let g:go_highlight_operators = 1
|
let g:go_highlight_operators=1
|
||||||
let g:go_highlight_extra_types = 1
|
let g:go_highlight_extra_types=1
|
||||||
|
|
||||||
|
" nerdtree settings
|
||||||
|
let NERDTreeHighlightCursorLine=1
|
||||||
|
|
||||||
|
" nerdtree binds
|
||||||
|
nnoremap <C-n> :NERDTree<CR>
|
||||||
|
nnoremap <C-t> :NERDTreeToggle<CR>
|
||||||
|
nnoremap <C-f> :NERDTreeFind<CR>
|
||||||
|
|
||||||
|
5
zshrc
5
zshrc
@ -11,6 +11,11 @@ fi
|
|||||||
# Path to your oh-my-zsh installation.
|
# Path to your oh-my-zsh installation.
|
||||||
export ZSH="$HOME/.oh-my-zsh"
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
|
|
||||||
|
# fix golang not loading properly
|
||||||
|
export GOROOT=/usr/local/go
|
||||||
|
export GOPATH=$HOME/go
|
||||||
|
export GOBIN=$GOPATH/bin
|
||||||
|
export PATH=$PATH:$GOBIN:$GOPATH:$GOROOT:$GOROOT/bin
|
||||||
# Set name of the theme to load --- if set to "random", it will
|
# 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,
|
# 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
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
|
Loading…
x
Reference in New Issue
Block a user