feat(nvf): add formatter and filetree to nvf configuration
This commit is contained in:
parent
8139070d69
commit
169a8785ee
1 changed files with 13 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
|
|
||||||
{
|
|
||||||
config.vim = {
|
config.vim = {
|
||||||
|
# TODO: Install catppuccin
|
||||||
theme.enable = true;
|
theme.enable = true;
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
@ -24,6 +23,16 @@
|
||||||
autopairs.nvim-autopairs.enable = true;
|
autopairs.nvim-autopairs.enable = true;
|
||||||
binds.whichKey.enable = true;
|
binds.whichKey.enable = true;
|
||||||
comments.comment-nvim.enable = true;
|
comments.comment-nvim.enable = true;
|
||||||
|
formatter.conform-nvim.enable = true;
|
||||||
|
|
||||||
|
# Filetree
|
||||||
|
filetree.nvimTree = {
|
||||||
|
enable = true;
|
||||||
|
# TODO:
|
||||||
|
# - open on right pane instead
|
||||||
|
# - keybind to open and close
|
||||||
|
# - allow me to move files around with vim bindings
|
||||||
|
};
|
||||||
|
|
||||||
# Languages
|
# Languages
|
||||||
languages = {
|
languages = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue