Browse Source

Oopsies, modules outside the `start` dir

master
Julio Biason 4 years ago
parent
commit
7eae6e1671
  1. 6
      .gitmodules
  2. 9
      bash/history.bash
  3. 1
      nvim/pack/project/editorconfig-vim
  4. 1
      nvim/pack/project/start/vim-fugitive

6
.gitmodules vendored

@ -16,12 +16,12 @@
[submodule "nvim/pack/syntaxes/start/vim-gutentags"]
path = nvim/pack/syntaxes/start/vim-gutentags
url = https://github.com/ludovicchabant/vim-gutentags.git
[submodule "nvim/pack/project/editorconfig-vim"]
path = nvim/pack/project/editorconfig-vim
url = https://github.com/editorconfig/editorconfig-vim.git
[submodule "nvim/pack/visuals/start/vim-rainbow"]
path = nvim/pack/visuals/start/vim-rainbow
url = https://github.com/frazrepo/vim-rainbow.git
[submodule "nvim/pack/syntaxes/start/vim-polyglot"]
path = nvim/pack/syntaxes/start/vim-polyglot
url = https://github.com/sheerun/vim-polyglot.git
[submodule "nvim/pack/project/start/vim-fugitive"]
path = nvim/pack/project/start/vim-fugitive
url = https://github.com/tpope/vim-fugitive.git

9
bash/history.bash

@ -1,3 +1,12 @@
# History size
HISTSIZE=20000
HISTFILESIZE=40000
# Avoid duplicates
HISTCONTROL=ignoredups:erasedups
# When the shell exits, append to the history file instead of overwriting it
shopt -s histappend
# After each command, append to the history file and reread it
PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r"

1
nvim/pack/project/editorconfig-vim

@ -1 +0,0 @@
Subproject commit 0a3c1d8082e38a5ebadcba7bb3a608d88a9ff044

1
nvim/pack/project/start/vim-fugitive

@ -0,0 +1 @@
Subproject commit 89e6b5e4e1d8152bfc3c26aa2655c0342d0809d1
Loading…
Cancel
Save