diff --git a/tmux/.tmuxinator/dev.yml b/tmux/.tmuxinator/dev.yml index 09dc3bd..7e37eed 100644 --- a/tmux/.tmuxinator/dev.yml +++ b/tmux/.tmuxinator/dev.yml @@ -6,34 +6,22 @@ windows: layout: main-horizontal panes: - main: - - hgd gmscore - - vim - other: - - hgd gmscore - experiments: layout: main-horizontal panes: - main: - - hgd experiments - - vim - other: - - hgd experiments - critique: layout: main-horizontal panes: - main: - - hgd google-comments - - vim - other: - - hgd google-comments - dotfiles: layout: main-horizontal panes: - main: - - cd ~/dotfiles - - vim - other: - - cd ~/dotfiles diff --git a/vim/.vim/lua/plugins/lsp.lua b/vim/.vim/lua/plugins/lsp.lua index ee5a747..d78ff6a 100644 --- a/vim/.vim/lua/plugins/lsp.lua +++ b/vim/.vim/lua/plugins/lsp.lua @@ -61,7 +61,7 @@ return { { "g0", "lua vim.lsp.buf.document_symbol()" }, { "gr", "Telescope lsp_references" }, { "gW", "lua vim.lsp.buf.workspace_symbol()" }, - { "gd", "lua vim.lsp.buf.definition()" }, + { "gd", "Telescope lsp_definitions" }, { "gD", "tab split | lua vim.lsp.buf.definition()" }, { "gi", "lua vim.lsp.buf.implementation()" }, { "gI", "lua vim.lsp.buf.implementation()" }, diff --git a/vim/.vim/lua/plugins/neotree.lua b/vim/.vim/lua/plugins/neotree.lua index 975b594..165b87f 100644 --- a/vim/.vim/lua/plugins/neotree.lua +++ b/vim/.vim/lua/plugins/neotree.lua @@ -10,6 +10,9 @@ return { -- }, config = function() require("neo-tree").setup({ + filesystem = { + bind_to_cwd = true, + }, sources = { "filesystem", "buffers",