├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── rustfmt.toml ├── src ├── highlight.rs ├── main.rs ├── plugin.rs ├── terminal.rs └── theme.rs └── syntaxes └── patches └── nushell.sublime-syntax.patch /.gitignore: -------------------------------------------------------------------------------- 1 | # Cargo build output 2 | /target 3 | 4 | # JetBrains IDE 5 | /.idea 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/src/highlight.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/src/plugin.rs -------------------------------------------------------------------------------- /src/terminal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/src/terminal.rs -------------------------------------------------------------------------------- /src/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/src/theme.rs -------------------------------------------------------------------------------- /syntaxes/patches/nushell.sublime-syntax.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cptpiepmatz/nu-plugin-highlight/HEAD/syntaxes/patches/nushell.sublime-syntax.patch --------------------------------------------------------------------------------