diff options
Diffstat (limited to 'vhdl_ls.toml')
-rw-r--r-- | vhdl_ls.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vhdl_ls.toml b/vhdl_ls.toml new file mode 100644 index 0000000..79148f6 --- /dev/null +++ b/vhdl_ls.toml @@ -0,0 +1,19 @@ +standard = "2008" + +[libraries] +defaultlib.files = [ + "pb_APP_log_comb.sim/sim_1/behav/xsim/**/*.vhd", +] +defaultlib.exclude = [ + "**/*.vdb", # compiled binaries + "**/xsim.dir/**", # simulation-specific internal files +] + +UNISIM.files = [ + "/opt/Xilinx/Vivado/2023.1/data/vhdl/src/unisims/unisim_VCOMP.vhd", +] +UNISIM.is_third_party = true + +[lint] +unused = "error" +unnecessary_work_library = false |