aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--fish/fish_variables1
-rw-r--r--mutt/cache/headersbin868608 -> 924928 bytes
-rw-r--r--vim/vimrc3
4 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 59f89bc..13df498 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
mutt/temp/*
+newsboat/cache.db.lock
diff --git a/fish/fish_variables b/fish/fish_variables
index a101794..a4412f5 100644
--- a/fish/fish_variables
+++ b/fish/fish_variables
@@ -40,4 +40,5 @@ SETUVAR fish_pager_color_description:B3A06D\x1eyellow
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
SETUVAR fish_pager_color_selected_background:\x2dr
+SETUVAR fish_user_paths:/home/lemon/go/bin
SETUVAR fisher_dependency_count:Colored\x2dMan\x2dPages\x1ebass
diff --git a/mutt/cache/headers b/mutt/cache/headers
index f139ef9..d55d85e 100644
--- a/mutt/cache/headers
+++ b/mutt/cache/headers
Binary files differ
diff --git a/vim/vimrc b/vim/vimrc
index 0261200..8ba54bc 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -349,6 +349,9 @@ let g:go_snippet_engine = "ultisnips"
au Filetype go nmap <leader>ga <Plug>(go-alternate-edit)
au Filetype go nmap <leader>gah <Plug>(go-alternate-split)
au Filetype go nmap <leader>gav <Plug>(go-alternate-vertical)
+au Filetype go nmap <leader>gaf <Plug>(go-fmt)
+au Filetype go nmap <leader>gal <Plug>(go-lint)
+au Filetype go nmap <leader>gbx <Plug>(go-deps)
au FileType go nmap <F8> :GoTestFunc -short<cr>
au FileType go nmap <F10> :GoTest -short<cr>
au FileType go nmap <F9> :DlvToggleBreakpoint<CR>