Compare commits

..

No commits in common. "766fd78e815060b3dfd839d3d346bcbdd77dead5" and "bfd569b1022411217d2a5dc047e132a3bad58da2" have entirely different histories.

4 changed files with 12 additions and 17 deletions

View File

@ -64,9 +64,9 @@
(set nvim.o.termguicolors true) (set nvim.o.termguicolors true)
; neovide ; neovide
; (set nvim.g.neovide_fullscreen true) (set nvim.g.neovide_fullscreen true)
(set nvim.g.neovide_cursor_vfx_mode "pixiedust") (set nvim.g.neovide_cursor_vfx_mode "pixiedust")
(set nvim.o.guifont "FiraCode Nerd Font Mono:h16") (set nvim.o.guifont "FiraCode Nerd Font Mono:h20")
(require "plugins") (require "plugins")
(require "settings") (require "settings")

View File

@ -14,14 +14,14 @@
(lspconfig.rust_analyzer.setup {}) (lspconfig.rust_analyzer.setup {})
(lspconfig.gopls.setup {}) (lspconfig.gopls.setup {})
(lspconfig.denols.setup {}) (lspconfig.denols.setup {})
; (lspconfig.sourcekit.setup {}) (lspconfig.sourcekit.setup {})
; (lspconfig.ccls.setup (lspconfig.ccls.setup
; {:init_options {:clang {:extraArgs ["-I/usr/local/include" {:init_options {:clang {:extraArgs ["-I/usr/local/include"
; "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1" "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"
; "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/12.0.0/include" "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/12.0.0/include"
; "-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include" "-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include"
; "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include" "-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
; "-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"]}}}) "-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"]}}})
(treesitter.setup {:ensure_installed ["c" "cpp" "python" "go" "rust" "javascript" "lua"] (treesitter.setup {:ensure_installed ["c" "cpp" "python" "go" "rust" "javascript" "lua"]
:highlight {:enable true} :highlight {:enable true}

View File

@ -21,7 +21,8 @@
(use :cocopon/vaffle.vim) (use :cocopon/vaffle.vim)
(use :jeetsukumaran/vim-buffergator) (use :jeetsukumaran/vim-buffergator)
(use :tpope/vim-fugitive) (use :tpope/vim-fugitive)
(use :blackCauldron7/surround.nvim) (use :kana/vim-operator-user)
(use :rhysd/vim-operator-surround)
(use :chaoren/vim-wordmotion) (use :chaoren/vim-wordmotion)
(use :b3nj5m1n/kommentary) (use :b3nj5m1n/kommentary)
(use :nelstrom/vim-visual-star-search) (use :nelstrom/vim-visual-star-search)

View File

@ -24,12 +24,6 @@
(nvim.set_keymap "" :sd "<Plug>(operator-surround-delete)" {:silent true}) (nvim.set_keymap "" :sd "<Plug>(operator-surround-delete)" {:silent true})
(nvim.set_keymap "" :sr "<Plug>(operator-surround-replace)" {:silent true}) (nvim.set_keymap "" :sr "<Plug>(operator-surround-replace)" {:silent true})
;; surround.nvim
(global surround (require :surround))
(surround.setup
{:mappings_style "sandwich"
})
;; kommentary ;; kommentary
(global kommentary (require :kommentary.config)) (global kommentary (require :kommentary.config))
(kommentary.configure_language :default {:prefer_single_line_comments true}) (kommentary.configure_language :default {:prefer_single_line_comments true})