Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nachumk/systemverilog.vim
SystemVerilog vim scripts
https://github.com/nachumk/systemverilog.vim
Last synced: 20 days ago
JSON representation
SystemVerilog vim scripts
- Host: GitHub
- URL: https://github.com/nachumk/systemverilog.vim
- Owner: nachumk
- License: gpl-2.0
- Created: 2014-02-09T07:07:53.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T18:20:55.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T02:24:46.611Z (4 months ago)
- Language: Vim Script
- Size: 62.5 KB
- Stars: 65
- Watchers: 11
- Forks: 22
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
systemverilog.vim
=================SystemVerilog indent and syntax scripts
### VIM 8 Install:
Install by cloning repository:
git clone https://github.com/nachumk/systemverilog.vim ~/.vim/pack/systemverilog.vim
### VIM 7 Install:
VIM 7 doesn't have a native package management system. Using pathogen is recommended.
Pathogen Install (will enable VIM 8's directory structure of 'pack' instead of 'bundle' in VIM 7 - make sure Pathogen is updated as well)
https://github.com/tpope/vim-pathogen
Install by cloning repository:
git clone https://github.com/nachumk/systemverilog.vim ~/.vim/pack/systemverilog.vim
### My .vimrc:
"Enable matchit
runtime macros/matchit.vim
if v:version < 800
"Start pathogen
execute pathogen#infect()
endif
"Turn on syntax highlighting
syntax on
"Enable filetype detection
filetype plugin indent on
"Enable folding based on indent (on 8.0 and greater versions)
if v:version >= 800
set foldmethod=indent
set foldnestmax=10
set nofoldenable
set foldlevelstart=10
endif