Skip to content

Tip

평소에 보기 싫은 파일을 File Explore View 에서 숨겨보자!

1. Plugin File-hider

관련 plugin 이 존재한다. 하지만 설치하고 적용해 보니 파일이 많아지는 경우 file explore 화면이 깨지는 문제가 있었다.

2. .obsidian/snippets 활용

file-hide.png

Settings -> Appearance -> CSS Snippets

CSS snippets 를 직접 넣어주어 원하는 폴더/파일을 숨길 수 있다.

div[data-path='resources'], div[data-path='resources'] + div.nav-folder-children {display: none;}
div[data-path='docs/archive'], div[data-path='docs/archive'] + div.nav-folder-children {display: none;}
div[data-path='docs/assets'], div[data-path='docs/assets'] + div.nav-folder-children {display: none;}
div[data-path='LICENSE'] {display: none;}

평소에는 잘 보지 않는 폴더 세가지와 라이센스 파일 하나를 기본 화면에서 제거하였다.

images/after.png

깔끔한 file explorer 화면!

Snippet Commands Obsidian Plugin

이 플러그인을 통해 command 혹은 단축키로 간단하게 개별 css snippet 적용을 toggle 할 수 있다.


Last update: February 28, 2023
Created: February 24, 2023