Compare commits

..

No commits in common. "35bdf7c2a23966852cee11571a8599f1d00889f5" and "3938d6db5d1006e8a4244b41d5ece94caab524b5" have entirely different histories.

5 changed files with 2 additions and 7 deletions

View File

@ -25,8 +25,8 @@
ansible-vim ansible-vim
# session handling # session handling
project-nvim vim-obsession
auto-session vim-prosession
nvim-treesitter nvim-treesitter
markdown-preview-nvim # use({ "iamcco/markdown-preview.nvim", run = ":call mkdp#util#install()" }) markdown-preview-nvim # use({ "iamcco/markdown-preview.nvim", run = ":call mkdp#util#install()" })
@ -96,7 +96,6 @@
${builtins.readFile ./nvim-cmp.lua } ${builtins.readFile ./nvim-cmp.lua }
${builtins.readFile ./telescope.lua } ${builtins.readFile ./telescope.lua }
${builtins.readFile ./themes.lua } ${builtins.readFile ./themes.lua }
${builtins.readFile ./project-nvim.lua }
EOF EOF
''; '';
}; };

View File

@ -23,7 +23,6 @@ nnoremap("<leader>G", ":GV --all<CR>")
nnoremap("<leader>ff", "<Cmd>Telescope find_files theme=dropdown<CR>") nnoremap("<leader>ff", "<Cmd>Telescope find_files theme=dropdown<CR>")
nnoremap("<leader>fb", "<Cmd>Telescope buffers theme=dropdown<CR>") nnoremap("<leader>fb", "<Cmd>Telescope buffers theme=dropdown<CR>")
nnoremap("<leader>fg", "<Cmd>Telescope git_files theme=dropdown<CR>") nnoremap("<leader>fg", "<Cmd>Telescope git_files theme=dropdown<CR>")
nnoremap("<leader>fp", "<Cmd>Telescope projects theme=dropdown<CR>")
nnoremap("<C-f>", "<Cmd>Telescope grep_string<CR>") nnoremap("<C-f>", "<Cmd>Telescope grep_string<CR>")
nnoremap("<C-g>", "<Cmd>Telescope live_grep<CR>") nnoremap("<C-g>", "<Cmd>Telescope live_grep<CR>")

View File

@ -49,7 +49,6 @@ capabilities = require("cmp_nvim_lsp").update_capabilities(capabilities)
local servers = { local servers = {
["bashls"] = {}, ["bashls"] = {},
["dockerls"] = {},
["rnix"] = {}, ["rnix"] = {},
["terraformls"] = {}, ["terraformls"] = {},
["tflint"] = {}, ["tflint"] = {},

View File

@ -1 +0,0 @@
require('project_nvim').setup({})

View File

@ -31,4 +31,3 @@ telescope.setup({
telescope.load_extension("fzf") telescope.load_extension("fzf")
telescope.load_extension("ui-select") telescope.load_extension("ui-select")
telescope.load_extension("projects")