diff --git a/dotfiles/fish/fish_variables b/dotfiles/fish/fish_variables index e9844cb..8bd68ff 100644 --- a/dotfiles/fish/fish_variables +++ b/dotfiles/fish/fish_variables @@ -1,6 +1,8 @@ # This file contains fish universal variable definitions. # VERSION: 3.0 SETUVAR __fish_initialized:3400 +SETUVAR _fisher_danhper_2F_fish_2D_ssh_2D_agent_files:/home/digyx/\x2econfig/fish/functions/__ssh_agent_is_started\x2efish\x1e/home/digyx/\x2econfig/fish/functions/__ssh_agent_start\x2efish\x1e/home/digyx/\x2econfig/fish/conf\x2ed/fish\x2dssh\x2dagent\x2efish +SETUVAR _fisher_plugins:danhper/fish\x2dssh\x2dagent SETUVAR fish_color_autosuggestion:585858 SETUVAR fish_color_cancel:\x2dr SETUVAR fish_color_command:a1b56c diff --git a/dotfiles/nvim/init.vim b/dotfiles/nvim/init.vim index 9febba9..61ee1d9 100644 --- a/dotfiles/nvim/init.vim +++ b/dotfiles/nvim/init.vim @@ -7,6 +7,10 @@ call plug#begin('~/.local/share/nvim/plugged') Plug 'mattn/emmet-vim' Plug 'sheerun/vim-polyglot' Plug 'preservim/nerdtree' + Plug 'nvim-lua/plenary.nvim' + Plug 'nvim-telescope/telescope.nvim' + Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} + Plug 'kyazdani42/nvim-web-devicons' call plug#end() "Theme @@ -19,7 +23,7 @@ set splitright splitbelow set scrolloff=10 tnoremap -nmap :NERDTreeToggle +nmap :NERDTree let NERDTreeQuitOnOpen=3 command TMK w | call system("latexmk -pdf " . expand("%")) | call system("latexmk -c") @@ -51,6 +55,12 @@ nmap gt (coc-type-definition) nmap gi (coc-implementation) nmap gr (coc-references) +" Telescope +nnoremap ff Telescope find_files +nnoremap fg Telescope live_grep +nnoremap fb Telescope buffers +nnoremap fh Telescope help_tags + " Diagnostic navigation nmap [d (coc-diagnostic-prev) nmap ]d (coc-diagnostic-next)