diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-06-03 18:12:03 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-06-03 18:12:03 +0100 |
commit | 4d14de712eae7d9567ad6eb94731fb547872b8a3 (patch) | |
tree | f742dd55dcc72af50b6a7c4552a45804a19dbba7 /nvim | |
parent | 4654d5c27926796979bdcf447a89e79a29eedac3 (diff) | |
parent | 7344312c66b8d7f90a741dcf5a6a14b86c2f9c42 (diff) |
Merge branch 'master' of https://github.com/uvaes/dotfiles
Conflicts:
vimrc
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/.netrwhist | 3 | ||||
-rw-r--r-- | nvim/mySnippets/cpp.snippets | 16 | ||||
-rw-r--r-- | nvim/mySnippets/mail.snippets | 4 | ||||
-rw-r--r-- | nvim/spell/en.utf-8.spl | bin | 0 -> 570549 bytes | |||
-rw-r--r-- | nvim/spell/en.utf-8.sug | bin | 0 -> 556477 bytes |
5 files changed, 22 insertions, 1 deletions
diff --git a/nvim/.netrwhist b/nvim/.netrwhist new file mode 100644 index 0000000..f3dd887 --- /dev/null +++ b/nvim/.netrwhist @@ -0,0 +1,3 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhist_cnt =1 +let g:netrw_dirhist_1='/home/urbain/Dropbox/phd/reports/mres' diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets index 5ad9624..d314641 100644 --- a/nvim/mySnippets/cpp.snippets +++ b/nvim/mySnippets/cpp.snippets @@ -10,6 +10,22 @@ for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) { $0 endsnippet +snippet print_vec "Print vector" b +for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) { + cout << setw(12) << $1[iii]; + cout << endl; +} +$0 +endsnippet + +snippet forij "Matrix iteration" b +for (int ${2:i} = 0; $2 < ${1:count}; $2++) { + for (int ${4:j} = 0; $4 < $1; $4++) { + ${5} + } +} +endsnippet + snippet vec "vector" i vector<${1:double}> $0 endsnippet diff --git a/nvim/mySnippets/mail.snippets b/nvim/mySnippets/mail.snippets index c512f9b..9839916 100644 --- a/nvim/mySnippets/mail.snippets +++ b/nvim/mySnippets/mail.snippets @@ -15,7 +15,9 @@ ${3:Urbain} endsnippet snippet sign "Signature" b -Urbain Vaes, +Best wishes, + +Urbain Vaes Department of Mathematics Office 6M09 endsnippet diff --git a/nvim/spell/en.utf-8.spl b/nvim/spell/en.utf-8.spl Binary files differnew file mode 100644 index 0000000..a41bf79 --- /dev/null +++ b/nvim/spell/en.utf-8.spl diff --git a/nvim/spell/en.utf-8.sug b/nvim/spell/en.utf-8.sug Binary files differnew file mode 100644 index 0000000..b82667d --- /dev/null +++ b/nvim/spell/en.utf-8.sug |