Update
This commit is contained in:
parent
f82c9a2699
commit
187cb6b275
|
@ -24,9 +24,9 @@ cmp.setup({
|
||||||
-- mapping
|
-- mapping
|
||||||
mapping = cmp.mapping.preset.insert({
|
mapping = cmp.mapping.preset.insert({
|
||||||
-- Shift+TAB to go to the Previous Suggested item
|
-- Shift+TAB to go to the Previous Suggested item
|
||||||
["<S-Tab>"] = cmp.mapping.select_prev_item(),
|
["<C-k>"] = cmp.mapping.select_prev_item(),
|
||||||
-- Tab to go to the next suggestion
|
-- Tab to go to the next suggestion
|
||||||
["<Tab>"] = cmp.mapping.select_next_item(),
|
["<C-j>"] = cmp.mapping.select_next_item(),
|
||||||
-- CTRL+SHIFT+f to scroll backwards in description
|
-- CTRL+SHIFT+f to scroll backwards in description
|
||||||
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
||||||
-- CTRL+F to scroll forwards in the description
|
-- CTRL+F to scroll forwards in the description
|
||||||
|
|
|
@ -49,4 +49,5 @@ return require("packer").startup(function(use)
|
||||||
use("patstockwell/vim-monokai-tasty")
|
use("patstockwell/vim-monokai-tasty")
|
||||||
use("yannickreiss/nvim-navigator")
|
use("yannickreiss/nvim-navigator")
|
||||||
use("projekt0n/github-nvim-theme")
|
use("projekt0n/github-nvim-theme")
|
||||||
|
use("tpope/vim-speeddating")
|
||||||
end)
|
end)
|
||||||
|
|
|
@ -80,3 +80,63 @@ Fileshare
|
||||||
Verplegung
|
Verplegung
|
||||||
Teambuildingmaßnahme
|
Teambuildingmaßnahme
|
||||||
Nachnahme/!
|
Nachnahme/!
|
||||||
|
Skale
|
||||||
|
Bins
|
||||||
|
äqudidistant
|
||||||
|
univariat
|
||||||
|
Lageparameter
|
||||||
|
yellow
|
||||||
|
center
|
||||||
|
tabular
|
||||||
|
Modalwert
|
||||||
|
Streuungsparameter
|
||||||
|
Zusammenhangsparameter
|
||||||
|
univariate
|
||||||
|
Modalwerte
|
||||||
|
multi
|
||||||
|
Range
|
||||||
|
Verschiebungssatz
|
||||||
|
violet
|
||||||
|
Regressionsprobleme
|
||||||
|
indigo
|
||||||
|
Squares
|
||||||
|
Square
|
||||||
|
xy
|
||||||
|
enumerate
|
||||||
|
Multiplikationssatz
|
||||||
|
Binomial
|
||||||
|
hypergeometrische
|
||||||
|
hypergeometrisch
|
||||||
|
hypergeometrischer
|
||||||
|
cc
|
||||||
|
Poisson
|
||||||
|
Uniformverteilung
|
||||||
|
uniformverteilt
|
||||||
|
exponentialverteilt
|
||||||
|
Gauß'sche
|
||||||
|
standardnormalverteilt
|
||||||
|
Achsenssymmetrisch
|
||||||
|
Trapezregel
|
||||||
|
Simpson
|
||||||
|
standardnormalverteilte
|
||||||
|
Intervallschätzung
|
||||||
|
Konfidenz
|
||||||
|
argmax
|
||||||
|
logarithmierten
|
||||||
|
Likelihoodfunktion
|
||||||
|
logarithmierte
|
||||||
|
Likelihood
|
||||||
|
cccc
|
||||||
|
Exponential
|
||||||
|
erwartungstreu
|
||||||
|
Intervallschätzer
|
||||||
|
Intervallschätzern
|
||||||
|
Student'sche
|
||||||
|
Intervallformel
|
||||||
|
Quantiltabelle
|
||||||
|
Testvariable
|
||||||
|
Quantiltabllen
|
||||||
|
Signifikanzlevel
|
||||||
|
domänenabhängig
|
||||||
|
kongeriert
|
||||||
|
white
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
" NERDTree remap
|
" NERDTree remap
|
||||||
let g:NERDTreeDirArrowExpandable = '▸'
|
let g:NERDTreeDirArrowExpandable = '▸'
|
||||||
let g:NERDTreeDirArrowCollapsible = '▾'
|
let g:NERDTreeDirArrowCollapsible = '▾'
|
||||||
nnoremap <C-a> :NERDTreeToggle<CR>
|
nmap <C-e> :NERDTreeToggle<CR>
|
||||||
|
|
||||||
" open builtin terminal
|
" open builtin terminal
|
||||||
function OpenTerm()
|
function OpenTerm()
|
||||||
|
|
Loading…
Reference in New Issue