dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit ed08238b20ed01152ce7af46579eb3f02c93058d
parent 6e6758802443f5cb2f1dbc48d86c453ee919e2d4
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Mon, 10 Feb 2020 12:51:32 +0100

vim: ada config

Former-commit-id: 9cfe35f1a2da59f8cc43c0532583bfdb50e4ad79
Diffstat:
Mvim/vimrc | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/vim/vimrc b/vim/vimrc @@ -124,6 +124,9 @@ Plug 'tpope/vim-apathy' " easier markdown-style tables Plug 'dhruvasagar/vim-table-mode' + +" Ada syntax, indent, completion +Plug 'thindil/Ada-Bundle' call plug#end() " }}} " Config {{{ @@ -344,6 +347,14 @@ let g:sandwich#recipes += [ \ {'buns': ['(\s*', '\s*)'], 'nesting': 1, 'regex': 1, 'match_syntax': 1, 'kind': ['delete', 'replace', 'textobj'], 'action': ['delete'], 'input': [')']}, \ ] " }}} +" Ada {{{ +let g:ada_standard_types = 1 +let g:ada_begin_preproc = 1 +let g:ada_extended_completion = 1 +let g:ada_gnat_extensions = 1 +let g:ada_with_gnat_project_files = 1 + +" }}} " netrw {{{ let g:netrw_banner = 0 " hide the banner let g:netrw_fastbrowse = 2 " only get dir list if not seen, or manually refreshed