this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change Git comment char to semicolon to reduce conflict with markdown

+27 -9
+1
git/.config/git/config
··· 1 1 [core] 2 2 commitGraph = true 3 3 pager = "diff-so-fancy | less --tabs=4 -RFX" 4 + commentChar = ";" 4 5 [gc] 5 6 writeCommitGraph = true 6 7 [alias]
-1
git/.config/git/ignore
··· 65 65 .gdb_history 66 66 perf.data* 67 67 oprofile_data 68 - *.socket 69 68 .tool-versions-e 70 69 # }}} 71 70 .elixir_ls
+1
nix/.config/nixpkgs/darwin/configuration.nix
··· 37 37 ripgrep 38 38 universal-ctags 39 39 w3m 40 + weechat 40 41 ]; 41 42 42 43 environment.shells = [ pkgs.fish ];
+2 -2
nix/.config/nixpkgs/overlays/erlang/elixir-ls.json
··· 1 1 { 2 2 "owner": "elixir-lsp", 3 3 "repo": "elixir-ls", 4 - "rev": "ba1c9cb86545298c487cf77a166c203fc44ce8dd", 5 - "sha256": "07i9hpgshl1i09id8gadi46p0z3j19z5pybmmasnky1jjnnqv7sk" 4 + "rev": "bc2c612db4835120252543772d945ee9be831abc", 5 + "sha256": "0vlxgnphcgyrm13h2yy5g5l817ccb6sqhq4mxp6y8slh124i0kxq" 6 6 }
+8 -6
vim/.config/nvim/init.vim
··· 87 87 " Fuzzy file search {{{ 88 88 nnoremap <Space><Space> :<C-u>Clap files<CR> 89 89 90 - let g:picker_default_external_filter = 'fzy' 91 - let g:picker_custom_find_executable = 'rg' 92 - let g:picker_custom_find_flags = '--color never --files --hidden --glob !.git' 93 90 let g:clap#provider#files# = { 94 - \ 'source': 'rg --color never --files --hidden --glob !.git', 95 - \ 'sink': 'e' 96 - \ } 91 + \ 'on_typed': function('clap#impl#on_typed'), 92 + \ 'source': 'rg --files --hidden --glob !.git', 93 + \ 'sink': function('clap#provider#files#sink_impl'), 94 + \ 'filter': function('clap#filter#'), 95 + \ 'support_open_action': v:true, 96 + \ 'enable_rooter': v:true, 97 + \ 'syntax': 'clap_files' 98 + \ } 97 99 98 100 set path=,, 99 101 " }}}
+10
vim/.config/nvim/plugin/langclient.vim
··· 38 38 autocmd User lsp_setup call lsp#register_server({ 39 39 \ 'name': 'ElixirLS', 40 40 \ 'cmd': s:nix_shell('elixir-ls', 'elixirLS'), 41 + \ 'root_uri':{server_info->lsp#utils#path_to_uri( 42 + \ lsp#utils#find_nearest_parent_file_directory( 43 + \ lsp#utils#get_buffer_path(), 44 + \ ['mix.lock', 'mix.exs', '.git/'] 45 + \ ))}, 41 46 \ 'whitelist': ['elixir', 'eelixir'] 42 47 \}) 43 48 autocmd User lsp_setup call lsp#register_server({ 44 49 \ 'name': 'Sourcer', 45 50 \ 'cmd': s:nix_shell('erlang_ls -t stdio --stdout', 'erlangSourcer'), 51 + \ 'root_uri':{server_info->lsp#utils#path_to_uri( 52 + \ lsp#utils#find_nearest_parent_file_directory( 53 + \ lsp#utils#get_buffer_path(), 54 + \ ['rebar.lock', 'rebar.config', '.git/'] 55 + \ ))}, 46 56 \ 'whitelist': ['erlang'] 47 57 \}) 48 58 autocmd User lsp_setup call lsp#register_server({
+5
vim/.config/nvim/plugin/projections.vim
··· 59 59 \ 'test/*_SUITE.erl': { 60 60 \ 'type': 'test', 61 61 \ 'alternate': 'src/{}.erl', 62 + \ 'template': ['-module({basename}).', '', 63 + \ '-compile(export_all).', '', 64 + \ '-include_lib("stdlib/include/assert.hrl").', 65 + \ '-include_lib("common_test/include/ct.hrl").', '', 66 + \ 'all() -> [].'], 62 67 \ }, 63 68 \ 'rebar.config': { 'type': 'rebar' } 64 69 \ }