From 54838d45d8116833e05ecdb7722c97535267c0be Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 23 May 2015 12:42:42 +0100 Subject: replaced buffergator by bufsurf --- vimrc | 1 - 1 file changed, 1 deletion(-) (limited to 'vimrc') diff --git a/vimrc b/vimrc index d722075..5ad3b76 100644 --- a/vimrc +++ b/vimrc @@ -35,7 +35,6 @@ Plugin 'tpope/vim-scriptease' Plugin 'tpope/vim-sensible' Plugin 'tpope/vim-surround' Plugin 'tpope/vim-unimpaired' -Plugin 'rdnetto/YCM-Generator' filetype plugin indent on syntax on -- cgit v1.2.3 From ddec4922e2bd723d34afa0b715626c7a125d13c3 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Tue, 26 May 2015 12:13:55 +0100 Subject: added c++ snippets --- nvim/mySnippets/cpp.snippets | 19 +++++++++++++++++++ vim/mySnippets/cpp.snippets | 10 ++++++++++ vimrc | 2 +- 3 files changed, 30 insertions(+), 1 deletion(-) (limited to 'vimrc') diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets index e69de29..5ad9624 100644 --- a/nvim/mySnippets/cpp.snippets +++ b/nvim/mySnippets/cpp.snippets @@ -0,0 +1,19 @@ +snippet print_mat "Print matrix" b +for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) { + cout << setw(12) << $1[iii][0]; + for (unsigned int jjj = 1; jjj < $1.size(); ++jjj) { + cout << ", "; + cout << setw(12) << $1[iii][jjj]; + } + cout << endl; +} +$0 +endsnippet + +snippet vec "vector" i +vector<${1:double}> $0 +endsnippet + +snippet mat "matrix" i +vector< vector<${1:double}> > $0 +endsnippet diff --git a/vim/mySnippets/cpp.snippets b/vim/mySnippets/cpp.snippets index e69de29..62c1faa 100644 --- a/vim/mySnippets/cpp.snippets +++ b/vim/mySnippets/cpp.snippets @@ -0,0 +1,10 @@ +snippet print_mat "Print matrix" b +for (unsigned int iii = 0; iii < ${0:mat}.size(); ++iii) { + cout << setw(12) << mat[iii][0]; + for (unsigned int jjj = 1; jjj < mat.size(); ++jjj) { + cout << ", "; + cout << setw(12) << mat[iii][jjj]; + } + cout << endl; +} +endsnippet diff --git a/vimrc b/vimrc index 5ad3b76..f6b1027 100644 --- a/vimrc +++ b/vimrc @@ -144,7 +144,7 @@ set spellfile="/home/urbain/.vim/spell/en.utf-8.add" set smartcase set ignorecase -" Misc + set noautochdir set cpoptions+=Iq set encoding=utf-8 -- cgit v1.2.3