Merge branch 'main' of github.com:elitherl/vim-config into main

This commit is contained in:
Edward Litherland-Smith 2022-04-27 10:44:05 +01:00
commit a7533a3764
16 changed files with 21 additions and 17 deletions

7
.gitmodules vendored
View file

@ -34,9 +34,6 @@
[submodule "pack/plugins/start/jedi-vim"] [submodule "pack/plugins/start/jedi-vim"]
path = pack/plugins/opt/jedi-vim path = pack/plugins/opt/jedi-vim
url = https://github.com/davidhalter/jedi-vim.git url = https://github.com/davidhalter/jedi-vim.git
[submodule "vim_source"]
path = vim_source
url = https://github.com/vim/vim.git
[submodule "extras/vim-monokai-pro"] [submodule "extras/vim-monokai-pro"]
path = extras/vim-monokai-pro path = extras/vim-monokai-pro
url = https://github.com/phanviet/vim-monokai-pro.git url = https://github.com/phanviet/vim-monokai-pro.git
@ -58,3 +55,7 @@
[submodule "pack/plugins/start/vim-toml"] [submodule "pack/plugins/start/vim-toml"]
path = pack/plugins/start/vim-toml path = pack/plugins/start/vim-toml
url = https://github.com/cespare/vim-toml.git url = https://github.com/cespare/vim-toml.git
[submodule "pack/plugins/start/fzf"]
path = pack/plugins/start/fzf
url = git@github.com:junegunn/fzf.vim.git
branch = master

@ -1 +1 @@
Subproject commit 94ff495eac89cea2532d8e0022f67c79a24d9649 Subproject commit 7db2ed5b825a311d0f6d12694d4738cf60106dc8

@ -1 +1 @@
Subproject commit f996ede5999c99b1b3e3cecc02dbd06cb286d3ff Subproject commit 6c51bb1573f0bf5deff04508769208fd503b5ff7

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

@ -1 +1 @@
Subproject commit 5617a1cf7d315e6e6f84d825c85e3b669d220bfa Subproject commit 7753505f3c500ec88d11e9373d05250f49c1d900

@ -1 +1 @@
Subproject commit 709b2d8dc88fa622d6c076f34b05b58fcccf393f Subproject commit 11931e2de42cb1a14887a002a874f0b2daf12bc2

@ -1 +1 @@
Subproject commit 23352556fdaa067209fa22df424f1b88ab370f6a Subproject commit a861f691ac7e40b1b359bc7a147078fa1e0570ce

@ -1 +1 @@
Subproject commit 94b79edbf2dce11c88162f9453fe6f8a4bc0412b Subproject commit 362e99292e6c56e79bdf2230d6f44364b68d6d5f

@ -1 +1 @@
Subproject commit 4afbe5ebf32ad85341b4c02b0e1d8ca96a64c561 Subproject commit 80ab990c7ff7251f43262aae4b60ff6eff2ef3a4

@ -1 +1 @@
Subproject commit 404c3c24e106cf273406c0bd836e6bd4ed87e9f0 Subproject commit b7287bd5421da62986d9abf9131509b2c9f918e4

@ -1 +1 @@
Subproject commit 24cc47789557827209add5881c226243711475ce Subproject commit 988a6dbad9a9777cd94aab18ba7821a41068685b

@ -1 +1 @@
Subproject commit 9da161d2d21e59795dde2a0c4b20b4e0a9e89d5b Subproject commit 440ecbf0b6a75586d445012d6bee9c657c814829

@ -1 +1 @@
Subproject commit 6a1e58c3ca3bc7acca36c90521b3dfae83b2a602 Subproject commit 9ca5bfe5bd274051b5dd796cc150348afc993b80

@ -1 +1 @@
Subproject commit 2c8983cc391287e5e26e015c3ab9c38de9f9b759 Subproject commit 89bcca8a3aeab360f6dfe5ce70999fc928669411

@ -1 +0,0 @@
Subproject commit 418a29f0ffcaa0a3d778724ab6d1111db525d3cc

5
vimrc
View file

@ -15,6 +15,9 @@ set noswapfile
set updatetime=1000 set updatetime=1000
set signcolumn=yes set signcolumn=yes
set rtp+=~/.fzf
map ; :Files<CR>
colorscheme onehalfdark colorscheme onehalfdark
if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor") if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor")
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
@ -129,4 +132,4 @@ if has('python3')
endif endif
" Load all of the helptags now, after plugins have been loaded. " Load all of the helptags now, after plugins have been loaded.
" All messages and errors will be ignored. " All messages and errors will be ignored.
silent! helptags ALL " silent! helptags ALL