feat: telescope file browser
This commit is contained in:
parent
577a19cf27
commit
1e499dccba
10 changed files with 169 additions and 72 deletions
modules/applications
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
ls = "exa -l";
|
||||
ls = "exa -la";
|
||||
sl = "sl -e";
|
||||
|
||||
# WIfi stuff
|
||||
|
|
|
@ -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; };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue