Installing a color scheme for Vim
I was wondering if someone could assist me in installing a color scheme for VIM? I literally have spent all day yesterday and this morning trying to figure it out. I am using a shell-client (ubuntu) to access my school's unix server. I will post a link to what I am trying to install and thank you in advance for your assistance:
https://github.com/whatyouhide/vim-gotham
vim
add a comment |
I was wondering if someone could assist me in installing a color scheme for VIM? I literally have spent all day yesterday and this morning trying to figure it out. I am using a shell-client (ubuntu) to access my school's unix server. I will post a link to what I am trying to install and thank you in advance for your assistance:
https://github.com/whatyouhide/vim-gotham
vim
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
1
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55
add a comment |
I was wondering if someone could assist me in installing a color scheme for VIM? I literally have spent all day yesterday and this morning trying to figure it out. I am using a shell-client (ubuntu) to access my school's unix server. I will post a link to what I am trying to install and thank you in advance for your assistance:
https://github.com/whatyouhide/vim-gotham
vim
I was wondering if someone could assist me in installing a color scheme for VIM? I literally have spent all day yesterday and this morning trying to figure it out. I am using a shell-client (ubuntu) to access my school's unix server. I will post a link to what I am trying to install and thank you in advance for your assistance:
https://github.com/whatyouhide/vim-gotham
vim
vim
edited Jan 19 '17 at 17:07
Satō Katsura
10.9k11634
10.9k11634
asked Jan 19 '17 at 17:03
user211376user211376
11
11
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
1
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55
add a comment |
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
1
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
1
1
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55
add a comment |
1 Answer
1
active
oldest
votes
The installation instructions in the README.md seems very clear to me:
If you don't use a plugin manager just copy the content of
vim/colors/to~/.vim/colors.
(if you get the repository with git, like I did, the directory to copy from will not lie in a vim directory, but in vim-gotham).
I made a test installation of the color scheme that worked:
$ cd
$ mkdir test
$ cd test
$ git clone git@github.com:whatyouhide/vim-gotham.git
$ mkdir ~/.vim/colors
$ cp vim-gotham/colors/* ~/.vim/colors
If you want the "themes":
$ mkdir ~/.vim/autoload
$ cp -r vim-gotham/autoload/* ~/.vim/autoload
Cleanup:
$ cd
$ rm -rf test
Then I can use the command :colorscheme gotham in Vim (or use colorscheme gotham in my ~/.vimrc file).
Can't say anything about the themes though. I use plain Vim, default everything.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f338663%2finstalling-a-color-scheme-for-vim%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The installation instructions in the README.md seems very clear to me:
If you don't use a plugin manager just copy the content of
vim/colors/to~/.vim/colors.
(if you get the repository with git, like I did, the directory to copy from will not lie in a vim directory, but in vim-gotham).
I made a test installation of the color scheme that worked:
$ cd
$ mkdir test
$ cd test
$ git clone git@github.com:whatyouhide/vim-gotham.git
$ mkdir ~/.vim/colors
$ cp vim-gotham/colors/* ~/.vim/colors
If you want the "themes":
$ mkdir ~/.vim/autoload
$ cp -r vim-gotham/autoload/* ~/.vim/autoload
Cleanup:
$ cd
$ rm -rf test
Then I can use the command :colorscheme gotham in Vim (or use colorscheme gotham in my ~/.vimrc file).
Can't say anything about the themes though. I use plain Vim, default everything.
add a comment |
The installation instructions in the README.md seems very clear to me:
If you don't use a plugin manager just copy the content of
vim/colors/to~/.vim/colors.
(if you get the repository with git, like I did, the directory to copy from will not lie in a vim directory, but in vim-gotham).
I made a test installation of the color scheme that worked:
$ cd
$ mkdir test
$ cd test
$ git clone git@github.com:whatyouhide/vim-gotham.git
$ mkdir ~/.vim/colors
$ cp vim-gotham/colors/* ~/.vim/colors
If you want the "themes":
$ mkdir ~/.vim/autoload
$ cp -r vim-gotham/autoload/* ~/.vim/autoload
Cleanup:
$ cd
$ rm -rf test
Then I can use the command :colorscheme gotham in Vim (or use colorscheme gotham in my ~/.vimrc file).
Can't say anything about the themes though. I use plain Vim, default everything.
add a comment |
The installation instructions in the README.md seems very clear to me:
If you don't use a plugin manager just copy the content of
vim/colors/to~/.vim/colors.
(if you get the repository with git, like I did, the directory to copy from will not lie in a vim directory, but in vim-gotham).
I made a test installation of the color scheme that worked:
$ cd
$ mkdir test
$ cd test
$ git clone git@github.com:whatyouhide/vim-gotham.git
$ mkdir ~/.vim/colors
$ cp vim-gotham/colors/* ~/.vim/colors
If you want the "themes":
$ mkdir ~/.vim/autoload
$ cp -r vim-gotham/autoload/* ~/.vim/autoload
Cleanup:
$ cd
$ rm -rf test
Then I can use the command :colorscheme gotham in Vim (or use colorscheme gotham in my ~/.vimrc file).
Can't say anything about the themes though. I use plain Vim, default everything.
The installation instructions in the README.md seems very clear to me:
If you don't use a plugin manager just copy the content of
vim/colors/to~/.vim/colors.
(if you get the repository with git, like I did, the directory to copy from will not lie in a vim directory, but in vim-gotham).
I made a test installation of the color scheme that worked:
$ cd
$ mkdir test
$ cd test
$ git clone git@github.com:whatyouhide/vim-gotham.git
$ mkdir ~/.vim/colors
$ cp vim-gotham/colors/* ~/.vim/colors
If you want the "themes":
$ mkdir ~/.vim/autoload
$ cp -r vim-gotham/autoload/* ~/.vim/autoload
Cleanup:
$ cd
$ rm -rf test
Then I can use the command :colorscheme gotham in Vim (or use colorscheme gotham in my ~/.vimrc file).
Can't say anything about the themes though. I use plain Vim, default everything.
edited Jan 19 '17 at 18:27
answered Jan 19 '17 at 18:21
KusalanandaKusalananda
124k16236387
124k16236387
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f338663%2finstalling-a-color-scheme-for-vim%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You need a Vim plugin manager. Once you have that, color schemes are installed like any other plugin, there isn't anything special about them.
– Satō Katsura
Jan 19 '17 at 17:10
1
in case you didn't know about: vim.stackexchange.com
– Jeff Schaller
Jan 19 '17 at 17:11
Does the terminal support color at all? unix.stackexchange.com/questions/23763/…
– Christopher
Jan 19 '17 at 17:55