Initial commit
This commit is contained in:
commit
b7ef9f18e9
25 changed files with 142 additions and 0 deletions
57
.gitmodules
vendored
Normal file
57
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
[submodule "pack/general/start/ale"]
|
||||
path = pack/general/start/ale
|
||||
url = https://github.com/dense-analysis/ale
|
||||
[submodule "pack/general/start/completion-buffers"]
|
||||
path = pack/general/start/completion-buffers
|
||||
url = https://github.com/steelsojka/completion-buffers
|
||||
[submodule "pack/general/start/completion-nvim"]
|
||||
path = pack/general/start/completion-nvim
|
||||
url = https://github.com/nvim-lua/completion-nvim
|
||||
[submodule "pack/general/start/gruvbox.nvim"]
|
||||
path = pack/general/start/gruvbox.nvim
|
||||
url = https://github.com/npxbr/gruvbox.nvim
|
||||
[submodule "pack/general/start/lush.nvim"]
|
||||
path = pack/general/start/lush.nvim
|
||||
url = https://github.com/rktjmp/lush.nvim
|
||||
[submodule "pack/general/start/nvim-lspconfig"]
|
||||
path = pack/general/start/nvim-lspconfig
|
||||
url = https://github.com/neovim/nvim-lspconfig
|
||||
[submodule "pack/general/start/nvim-treesitter"]
|
||||
path = pack/general/start/nvim-treesitter
|
||||
url = https://github.com/nvim-treesitter/nvim-treesitter
|
||||
[submodule "pack/general/start/plenary.nvim"]
|
||||
path = pack/general/start/plenary.nvim
|
||||
url = https://github.com/nvim-lua/plenary.nvim
|
||||
[submodule "pack/general/start/popup.nvim"]
|
||||
path = pack/general/start/popup.nvim
|
||||
url = https://github.com/nvim-lua/popup.nvim
|
||||
[submodule "pack/general/start/telescope.nvim"]
|
||||
path = pack/general/start/telescope.nvim
|
||||
url = https://github.com/nvim-telescope/telescope.nvim
|
||||
[submodule "pack/general/start/ultisnips"]
|
||||
path = pack/general/start/ultisnips
|
||||
url = https://github.com/SirVer/ultisnips
|
||||
[submodule "pack/general/start/vim-airline"]
|
||||
path = pack/general/start/vim-airline
|
||||
url = https://github.com/vim-airline/vim-airline
|
||||
[submodule "pack/general/start/vim-airline-themes"]
|
||||
path = pack/general/start/vim-airline-themes
|
||||
url = https://github.com/vim-airline/vim-airline-themes
|
||||
[submodule "pack/general/start/vim-markdown"]
|
||||
path = pack/general/start/vim-markdown
|
||||
url = https://github.com/plasticboy/vim-markdown
|
||||
[submodule "pack/general/start/vim-signify"]
|
||||
path = pack/general/start/vim-signify
|
||||
url = https://github.com/mhinz/vim-signify
|
||||
[submodule "pack/general/start/vim-snippets"]
|
||||
path = pack/general/start/vim-snippets
|
||||
url = https://github.com/honza/vim-snippets
|
||||
[submodule "pack/general/start/vim-surround"]
|
||||
path = pack/general/start/vim-surround
|
||||
url = https://github.com/tpope/vim-surround
|
||||
[submodule "pack/general/start/vim-toml"]
|
||||
path = pack/general/start/vim-toml
|
||||
url = https://github.com/cespare/vim-toml
|
||||
[submodule "pack/general/start/vim-wordmotion"]
|
||||
path = pack/general/start/vim-wordmotion
|
||||
url = https://github.com/chaoren/vim-wordmotion
|
||||
20
mysnippets/markdown.snippets
Normal file
20
mysnippets/markdown.snippets
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
snippet fig "Hugo Figure"
|
||||
{{< figure link="img/$1.jpg" thumb="_small"
|
||||
caption="$2" >}}
|
||||
$0
|
||||
endsnippet
|
||||
|
||||
snippet gal "Hugo Gallery"
|
||||
{{< gallery hover-effect="none" caption-effect="none" >}}
|
||||
|
||||
{{< figure link="img/$1.jpg" thumb="_small"
|
||||
caption="$2" >}}
|
||||
|
||||
$3
|
||||
{{< /gallery >}}
|
||||
$0
|
||||
endsnippet
|
||||
|
||||
snippet kbd "Keyboard"
|
||||
{{<kbd ${1:<key>}>}}$0
|
||||
endsnippet
|
||||
1
pack/general/start/ale
Submodule
1
pack/general/start/ale
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 1b08791228f5aca4545a3fba6699b29a003028fe
|
||||
1
pack/general/start/completion-buffers
Submodule
1
pack/general/start/completion-buffers
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit c36871b2a44b59761387f4972c617b44dcec5e75
|
||||
1
pack/general/start/completion-nvim
Submodule
1
pack/general/start/completion-nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit c8db953a8e9f4bc8183e31831297cf84d6f521b8
|
||||
1
pack/general/start/gruvbox.nvim
Submodule
1
pack/general/start/gruvbox.nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2dc25bb14fbd69f888dd0615c5576dd730de869a
|
||||
1
pack/general/start/lush.nvim
Submodule
1
pack/general/start/lush.nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 684c06d4879a38e50a247ce23b32beaacc75c4d1
|
||||
1
pack/general/start/nvim-lspconfig
Submodule
1
pack/general/start/nvim-lspconfig
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit a246d97ecfc0fd1f30645ea98577c7af4e1b0229
|
||||
1
pack/general/start/nvim-treesitter
Submodule
1
pack/general/start/nvim-treesitter
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 5634b175c42a3765405060e7407330d354c69369
|
||||
1
pack/general/start/plenary.nvim
Submodule
1
pack/general/start/plenary.nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit c4dd6e7b29e77d7d795c0f7c67a8ca9673a7b50f
|
||||
1
pack/general/start/popup.nvim
Submodule
1
pack/general/start/popup.nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 5e3bece7b4b4905f4ec89bee74c09cfd8172a16a
|
||||
1
pack/general/start/telescope.nvim
Submodule
1
pack/general/start/telescope.nvim
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 398a0d391aa2afcda1521a8e86b820ffb599b60b
|
||||
1
pack/general/start/ultisnips
Submodule
1
pack/general/start/ultisnips
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit b6c9a814a4fdfcad3ea53d8888746803a7218a9e
|
||||
1
pack/general/start/vim-airline
Submodule
1
pack/general/start/vim-airline
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 49cdcb7b3ea76ee19c737885c0ab19e64e564169
|
||||
1
pack/general/start/vim-airline-themes
Submodule
1
pack/general/start/vim-airline-themes
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 531bcc9e5a4cb1b1fb4dec8face230bf3d205ac7
|
||||
1
pack/general/start/vim-markdown
Submodule
1
pack/general/start/vim-markdown
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 8e5d86f7b85234d3d1b4207dceebc43a768ed5d4
|
||||
1
pack/general/start/vim-signify
Submodule
1
pack/general/start/vim-signify
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 22f05607d4d7406781af56cafc1121152988c6d2
|
||||
1
pack/general/start/vim-snippets
Submodule
1
pack/general/start/vim-snippets
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2a28fc35f6848ad38681d4b509ae3f5962276b5d
|
||||
1
pack/general/start/vim-surround
Submodule
1
pack/general/start/vim-surround
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit f51a26d3710629d031806305b6c8727189cd1935
|
||||
1
pack/general/start/vim-toml
Submodule
1
pack/general/start/vim-toml
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 3c5face8e8944a217af45bc5bb708ff7dfcf1a54
|
||||
1
pack/general/start/vim-wordmotion
Submodule
1
pack/general/start/vim-wordmotion
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit dca1a1827513497def6362411d093ae6b3cff7f8
|
||||
3
spell/en.utf-8.add
Normal file
3
spell/en.utf-8.add
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
combinatorics
|
||||
symbology
|
||||
petroglyphs
|
||||
BIN
spell/en.utf-8.add.spl
Normal file
BIN
spell/en.utf-8.add.spl
Normal file
Binary file not shown.
43
spell/es.utf-8.add
Normal file
43
spell/es.utf-8.add
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
videos
|
||||
video
|
||||
videojuegos
|
||||
polerón
|
||||
polera
|
||||
Arcoiris
|
||||
Arcoíris
|
||||
Viena
|
||||
Euclides
|
||||
Bézout
|
||||
coprimos
|
||||
Euler
|
||||
coprimo
|
||||
Fermat
|
||||
paralelógramo
|
||||
Baricentro
|
||||
Simetrales
|
||||
simetrales
|
||||
intersecan
|
||||
simetral
|
||||
circuncentro
|
||||
circuncírculo
|
||||
órtico
|
||||
ortocentro
|
||||
bisecta
|
||||
baricentro
|
||||
incírculo
|
||||
incentro
|
||||
inradio
|
||||
semiperímetro
|
||||
excírculos
|
||||
excírculo
|
||||
mediatriz
|
||||
interseca
|
||||
circunradios
|
||||
implicancia
|
||||
intersecta
|
||||
colineales
|
||||
Taiwán
|
||||
circuncírculos
|
||||
circunradio
|
||||
intersectan
|
||||
Karen
|
||||
BIN
spell/es.utf-8.add.spl
Normal file
BIN
spell/es.utf-8.add.spl
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue