Skip to content
/ cds.vim Public

Syntax highlighting for SAP CDS (Core Data Services) in Vim

Notifications You must be signed in to change notification settings

v0lkc/cds.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

CDS Vim Plugin

This is a Vim plugin that provides syntax highlighting for SAP's Core Data Services (CDS) when using the Vim text editor.

Installation

There are several methods for installing this plugin:

Using Vim Plug

Vim Plug is a minimalist Vim plugin manager. To install the cds.vim plugin with Vim Plug, add the following to your ~/.vimrc file:

call plug#begin('~/.vim/plugged')
Plug 'v0lkc/cds.vim'
call plug#end()

Then run :PlugInstall in Vim to install the plugin.

Using Vundle

Vundle is a Vim plugin manager that supports a wide range of plugins and makes them easy to install. To install the cds.vim plugin with Vundle, add the following to your ~/.vimrc file:

set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'v0lkc/cds.vim'

call vundle#end()
filetype plugin indent on

Then run :PluginInstall in Vim to install the plugin.

Using Pathogen

Pathogen makes it easy to install plugins in their own private directories. To install the cds.vim plugin with Pathogen, run the following command in your terminal:

cd ~/.vim/bundle && \
git clone https://github.com/v0lkc/cds.vim.git

Then start Vim, and Pathogen will load the plugin automatically.

Manual Installation

If you prefer to install the plugin manually, you can clone the repository and copy the files to your Vim directory:

git clone https://github.com/v0lkc/cds.vim.git
cp -R cds.vim/* ~/.vim/

Usage

After installation, the cds.vim plugin will automatically provide syntax highlighting for files with the .cds extension.

About

Syntax highlighting for SAP CDS (Core Data Services) in Vim

Resources

Stars

Watchers

Forks