Compare commits
17 Commits
skudonet
...
1d9912cfb4
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d9912cfb4 | |||
| 9f67c16187 | |||
| 740e378a93 | |||
| f9315e5aaf | |||
| a242455732 | |||
| 7242d257d0 | |||
| 21d0beb2d9 | |||
| 1d7d4d0146 | |||
| 1b4ebe2c7c | |||
| e33e6f476d | |||
| 8b66bc02b8 | |||
| c10ba7c8a8 | |||
| f7a88e4431 | |||
| be250e2d9c | |||
| c6d32f2b0f | |||
| 58eea72762 | |||
| d508759e33 |
@@ -8,6 +8,11 @@
|
|||||||
"latex": {
|
"latex": {
|
||||||
"command": "/sbin/texlab",
|
"command": "/sbin/texlab",
|
||||||
"filetypes": [ "tex","bib","plaintex","context" ]
|
"filetypes": [ "tex","bib","plaintex","context" ]
|
||||||
|
},
|
||||||
|
"bash": {
|
||||||
|
"command": "bash-language-server",
|
||||||
|
"args": ["start"],
|
||||||
|
"filetypes": ["sh","bash"]
|
||||||
},
|
},
|
||||||
"golang": {
|
"golang": {
|
||||||
"command": "gopls",
|
"command": "gopls",
|
||||||
|
|||||||
17
init.vim
17
init.vim
@@ -21,7 +21,6 @@ Plug 'antoyo/vim-licenses'
|
|||||||
Plug 'flazz/vim-colorschemes'
|
Plug 'flazz/vim-colorschemes'
|
||||||
Plug 'xiyaowong/transparent.nvim'
|
Plug 'xiyaowong/transparent.nvim'
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'github/copilot.vim', {'branch': 'release'}
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
" to ignore plugin indent changes, instead use:
|
" to ignore plugin indent changes, instead use:
|
||||||
@@ -29,9 +28,9 @@ filetype plugin on
|
|||||||
|
|
||||||
""" General
|
""" General
|
||||||
" indentation
|
" indentation
|
||||||
set tabstop=2 " tabs only count for 4 spaces
|
set tabstop=4 " tabs only count for 4 spaces
|
||||||
set shiftwidth=2 " when indenting use 4 spaces
|
set shiftwidth=4 " when indenting use 4 spaces
|
||||||
set expandtab " don't use tab characters
|
set expandtab " use tab characters
|
||||||
set autoindent
|
set autoindent
|
||||||
|
|
||||||
" view
|
" view
|
||||||
@@ -103,12 +102,8 @@ nmap <silent><nowait> gr <Plug>(coc-references)
|
|||||||
" syntax highlighting
|
" syntax highlighting
|
||||||
syntax on
|
syntax on
|
||||||
set background=dark
|
set background=dark
|
||||||
|
highlight Normal ctermbg=none
|
||||||
colorscheme solarized8_dark
|
colorscheme solarized8_dark
|
||||||
highlight Normal ctermbg=none
|
|
||||||
highlight Normal guibg=none
|
|
||||||
highlight NonText guibg=none
|
|
||||||
highlight Normal ctermbg=none
|
|
||||||
highlight NonText ctermbg=none
|
|
||||||
|
|
||||||
""" Project-Specific Settings
|
""" Project-Specific Settings
|
||||||
|
|
||||||
@@ -165,7 +160,3 @@ nnoremap <leader>f :Files<CR>
|
|||||||
nnoremap <leader>F :tabnew<CR>:Files<CR>
|
nnoremap <leader>F :tabnew<CR>:Files<CR>
|
||||||
nnoremap <leader>g :GFiles<CR>
|
nnoremap <leader>g :GFiles<CR>
|
||||||
nnoremap <leader>G :tabnew<CR>:GFiles<CR>
|
nnoremap <leader>G :tabnew<CR>:GFiles<CR>
|
||||||
|
|
||||||
" Copilot
|
|
||||||
imap <silent><script><expr> <C-J> copilot#Accept("\<CR>")
|
|
||||||
let g:copilot_no_tab_map = v:true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user