diff --git a/temp.txt b/temp.txt deleted file mode 100644 index 20a09f3..0000000 --- a/temp.txt +++ /dev/null @@ -1,13 +0,0 @@ -a -j -e -u -p - -c -d -n -g -sw -z -l diff --git a/vimrc b/vimrc index 4156b26..0109086 100644 --- a/vimrc +++ b/vimrc @@ -11,13 +11,7 @@ syntax on lua << EOF vim.o.background = 'dark' require('solarized').setup { - -- theme = 'neo'; theme = 'default'; - -- highlights = function (colors, colorhelper) - -- return { - -- " Folded = { underline = false, fg = colors.base3, bg = colors.base03 } - -- } - -- end } vim.cmd("colorscheme solarized") EOF @@ -36,8 +30,6 @@ Plug 'tpope/vim-commentary' Plug 'tpope/vim-fugitive' Plug 'tpope/vim-surround' Plug 'github/copilot.vim', {'branch': 'release'} -Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} -Plug 'neovim/nvim-lspconfig' call plug#end() @@ -156,25 +148,3 @@ augroup dirvish_config \ | nmap p (dovish_copy) augroup END - -" Enable Treesitter -lua << EOF -require'nvim-treesitter.configs'.setup { - ensure_installed = { - "javascript", - "python", - }, - highlight = { - enable = true, - }, -} -EOF - -" Enable LSP -lua << EOF -local lspconfig = require('lspconfig') -lspconfig.gopls.setup{} -lspconfig.jedi_language_server.setup{} -EOF - -let g:gsed_command = '/Users/gl6/.homebrew/bin/gsed'