summaryrefslogtreecommitdiff
path: root/support/texlab/src/util.rs
blob: 1c4d55a19d0338cc0cac25cd7d86ffc077a6adbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;

use std::path::PathBuf;

use once_cell::sync::Lazy;

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