1
Fork 0

feat: telescope file browser

This commit is contained in:
Matei Adriel 2022-02-22 22:52:01 +02:00
parent 577a19cf27
commit 1e499dccba
10 changed files with 169 additions and 72 deletions

View file

@ -37,7 +37,7 @@ in
];
plugins = with pkgs.vimPlugins;
with pkgs.vimExtraPlugins; [
with pkgs.vimExtraPlugins; with pkgs.myVimPlugins; [
config-nvim # my neovim config
github-nvim-theme # github theme for neovim
nvim-lspconfig # configures lsps for me
@ -53,7 +53,8 @@ in
lualine-nvim # customizable status line
nvim-tree-lua # file tree
vimtex # latex plugin
null-ls-nvim # generic language server
telescope-file-browser-nvim # file creation/deletion using telescope
# Cmp related stuff. See https://github.com/hrsh7th/nvim-cmp
cmp-nvim-lsp

View file

@ -1,5 +1,5 @@
{
ls = "exa -l";
ls = "exa -la";
sl = "sl -e";
# WIfi stuff

View file

@ -2,7 +2,14 @@
with import ../../../secrets.nix;
let
variables = {
# Configure github cli
GITHUB_USERNAME = "Mateiadrielrafael";
inherit GITHUB_TOKEN;
# Sets neovim as default editor
EDITOR = "nvim";
};
in { home-manager.users.adrielus = { home.sessionVariables = variables; }; }
in
{
home-manager.users.adrielus = { home.sessionVariables = variables; };
}