refactor: rename config.rs to icons.rs and move to top level

This commit is contained in:
Rolo 2024-12-31 03:34:17 -08:00
parent 46f09ea70e
commit 287fd9aed1
3 changed files with 3 additions and 3 deletions

View file

@ -7,6 +7,7 @@ use crate::{
events::DocumentFocusLost,
graphics::{CursorKind, Rect},
handlers::Handlers,
icons,
info::Info,
input::KeyEvent,
register::Registers,
@ -14,18 +15,16 @@ use crate::{
tree::{self, Tree},
Document, DocumentId, View, ViewId,
};
use config::Icons;
use dap::StackFrame;
use helix_event::dispatch;
use helix_vcs::DiffProviderRegistry;
use icons::Icons;
use futures_util::stream::select_all::SelectAll;
use futures_util::{future, StreamExt};
use helix_lsp::{Call, LanguageServerId};
use tokio_stream::wrappers::UnboundedReceiverStream;
mod config;
use std::{
borrow::Cow,
cell::Cell,

View file

@ -10,6 +10,7 @@ pub mod events;
pub mod graphics;
pub mod gutter;
pub mod handlers;
pub mod icons;
pub mod info;
pub mod input;
pub mod keyboard;