summaryrefslogtreecommitdiff
path: root/support/texlab/src/util.rs
blob: 6f27305f1bb96d2c1e338992b6af82a8c76826e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod capabilities;
pub mod chktex;
pub mod components;
pub mod cursor;
pub mod label;
pub mod lang_data;
pub mod line_index;
pub mod line_index_ext;
pub mod lsp_enums;
pub mod regex_filter;

use std::path::PathBuf;

use once_cell::sync::Lazy;

pub static HOME_DIR: Lazy<Option<PathBuf>> = Lazy::new(dirs::home_dir);