1
0
mirror of https://github.com/amix/vimrc synced 2025-07-12 06:05:01 +08:00

Update ui_glue.vim, lightline.txt, and 333 more files...

This commit is contained in:
geezuslucifer@gmail.com
2021-06-30 11:54:34 -05:00
parent 43c7efba8d
commit 1cca3b1df2
335 changed files with 8451 additions and 2020 deletions

View File

@ -58,7 +58,7 @@ snippet al
end
# Module block
snippet mod
module ${1:module_name} (${2});
module ${1:`vim_snippets#Filename('$1', 'name')`} (${2});
${0}
endmodule
# For
@ -81,3 +81,19 @@ snippet task
task ${1:name}(${2});
${0}
endtask: $1
# Initial
snippet ini
initial begin
${0}
end
# typedef struct packed
snippet tdsp
typedef struct packed {
int ${2:data};
} ${1:`vim_snippets#Filename('$1_t', 'name')`};
# typedef eum
snippet tde
typedef enum ${2:logic[15:0]}
{
${3:REG = 16'h0000}
} ${1:my_dest_t};